ATLAS Offline Software
Loading...
Searching...
No Matches
Connector.h File Reference
#include <iostream>
#include <vector>
#include <string>
#include "L1TopoCommon/StatusCode.h"
#include "L1TopoCommon/Types.h"
Include dependency graph for Connector.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  TCS::Connector

Namespaces

namespace  TCS

Functions

std::ostream & operator<< (std::ostream &, const TCS::Connector &)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & o,
const TCS::Connector & conn )

Definition at line 86 of file Connector.cxx.

87 {
88 try {
89 o << dynamic_cast<const TCS::DecisionConnector&>(conn);
90 return o;
91 } catch(...) {}
92 try {
93 o << dynamic_cast<const TCS::SortingConnector&>(conn);
94 return o;
95 } catch(...) {}
96 try {
97 o << dynamic_cast<const TCS::InputConnector&>(conn);
98 return o;
99 } catch(...) {}
100
101 return o;
102}