ATLAS Offline Software
Loading...
Searching...
No Matches
BinConfig.h File Reference

scales to modify the binning for histograms More...

#include <iostream>
#include <string>
#include "ReadCards.h"
Include dependency graph for BinConfig.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  BinConfig

Functions

std::ostream & operator<< (std::ostream &s, const BinConfig &b)

Detailed Description

scales to modify the binning for histograms

Author
mark sutton
Date
Thu 27 Feb 2014 07:57:21 CET

Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration

Definition in file BinConfig.h.

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & s,
const BinConfig & b )
inline

Definition at line 90 of file BinConfig.h.

90 {
91 return s << "\n\t[ config: " << b._name << " Nbins scale factors : "
92 << "\t pt: " << b.pt_NScale
93 << " eta: " << b.eta_NScale
94 << " phi: " << b.phi_NScale
95 << " d0: " << b.d0_NScale
96 << " a0: " << b.a0_NScale
97 << " z0: " << b.z0_NScale
98 << "\n\t residuals bins:\n"
99 << "\t pt: " << b.ptres_NScale
100 << " eta: " << b.etares_NScale
101 << " phi: " << b.phires_NScale
102 << " d0: " << b.d0res_NScale
103 << " a0: " << b.a0res_NScale
104 << " z0: " << b.z0res_NScale
105 << "\n\t ranges:\n"
106 << " d0: " << b.d0Max
107 << " a0: " << b.a0Max
108 << " ]";
109}