ATLAS Offline Software
BinUtility.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 // BinUtility.cxx, (c) ATLAS Detector software
8 
9 // Trk
11 // Gaudi
12 #include "GaudiKernel/MsgStream.h"
13 // STD
14 #include <iostream>
15 
17 MsgStream&
18 Trk::operator<<(MsgStream& sl, const BinUtility& bgen)
19 {
20  return bgen.dump(sl);
21 }
22 
23 std::ostream&
24 Trk::operator<<(std::ostream& sl, const BinUtility& bgen)
25 {
26  return bgen.dump(sl);
27 }
BinUtility.h
Trk::BinUtility::dump
MsgStream & dump(MsgStream &sl) const
Output Method for MsgStream, to be overloaded by child classes.
Definition: BinUtility.h:250
Trk::BinUtility
Definition: BinUtility.h:39
Trk::operator<<
MsgStream & operator<<(MsgStream &sl, const AlignModule &alignModule)
overload of << operator for MsgStream for debug output
Definition: AlignModule.cxx:204