CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ErrorStreamConfigurationInfo.cc
Go to the documentation of this file.
1 // $Id: ErrorStreamConfigurationInfo.cc,v 1.7 2011/03/07 15:31:32 mommsen Exp $
3 
5 #include <ostream>
6 
8 
9 
11 {
12  if ( streamLabel_ != other.streamLabel() )
13  return ( streamLabel_ < other.streamLabel() );
14  if ( streamId_ != other.streamId() )
15  return ( streamId_ < other.streamId() );
16  return ( maxFileSizeMB_ < other.maxFileSizeMB() );
17 }
18 
19 std::ostream& stor::operator<<
20 (
21  std::ostream& os,
23 )
24 {
25  os << "ErrorStreamConfigurationInfo:" << std::endl
26  << " Stream label: " << ci.streamLabel() << std::endl
27  << " Maximum file size, MB: " << ci.maxFileSizeMB() << std::endl
28  << " Stream Id: " << ci.streamId() << std::endl;
29 
30  return os;
31 }
32 
33 
bool operator<(const FedChannelConnection &, const FedChannelConnection &)