#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <cmath>
#include <cstdlib>
#include <cstdint>
#include "UCTTower.hh"
#include "UCTLogging.hh"
Go to the source code of this file.
|
std::ostream & | operator<< (std::ostream &os, const UCTTower &t) |
|
◆ operator<<()
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const UCTTower & |
t |
|
) |
| |
Definition at line 209 of file UCTTower.cc.
212 os <<
"Side Crt Crd Rgn iEta iPhi cEta cPhi eET eFG hET hFB Summary" << std::endl;
218 os << side << std::showbase << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.crate <<
" "
219 << std::showbase << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.card <<
" "
220 << std::showbase << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.region <<
" "
221 << std::showbase << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.iEta <<
" "
222 << std::showbase << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.iPhi <<
" " << std::setw(4)
223 << std::setfill(
' ') <<
std::dec <<
g.getCaloEtaIndex(
t.negativeEta,
t.region,
t.iEta) <<
" " << std::setw(4)
224 << std::setfill(
' ') <<
std::dec <<
g.getCaloPhiIndex(
t.crate,
t.card,
t.region,
t.iPhi) <<
" " << std::showbase
225 << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.ecalET <<
" " << std::showbase
226 << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.ecalFG <<
" " << std::showbase
227 << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.hcalET <<
" " << std::showbase
228 << std::internal << std::setfill(
'0') << std::setw(4) << std::hex <<
t.hcalFB <<
" " << std::showbase
229 << std::internal << std::setfill(
'0') << std::setw(10) << std::hex <<
t.towerData << std::endl;
References TauDecayModes::dec, g, AlCaHLTBitMon_QueryRunRegistry::string, and submitPVValidationJobs::t.