ATLAS Offline Software
Loading...
Searching...
No Matches
IeEmEg1BDTTOB.cxx
Go to the documentation of this file.
1/*
2Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include "IeEmEg1BDTTOB.h"
6
7#include <sstream>
8
10 std::string IeEmEg1BDTTOB::to_string() const {
11 std::stringstream ss;
12
13 ss << '\n'
15 << " eGamma1 BDT result " << eGamma1BDT_bits() << " (" << eGamma1BDT_bits().to_ulong() << ")";
16 return ss.str();
17 }
18}
19
20std::ostream& operator<<(std::ostream& os, const GlobalSim::IOBitwise::IeEmEg1BDTTOB& tob) {
21 os << tob.to_string();
22 return os;
23}
static Double_t ss
std::ostream & operator<<(std::ostream &lhs, const TestGaudiProperty &rhs)
Class to hold eGamma1 BDT decision bits.
virtual std::bitset< s_eGamma1BDT_width > eGamma1BDT_bits() const =0
Returns the eGamma1 BDT result bits.
virtual std::string to_string() const =0
print out contents to string
virtual std::string to_string() const =0
print out contents to string
Definition IeEmTOB.cxx:10