ATLAS Offline Software
Loading...
Searching...
No Matches
ClusterId.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
7namespace TrkDriftCircleMath {
8
9 std::ostream& operator<<(std::ostream& os, const TrkDriftCircleMath::ClusterId& id) {
10 if (id.isTgc())
11 os << "TGC";
12 else
13 os << "RPC";
14 if (id.measuresPhi())
15 os << " phi";
16 else
17 os << " eta";
18 return os;
19 }
20
21} // namespace TrkDriftCircleMath
Function object to check whether two Segments are sub/super sets or different.
std::ostream & operator<<(std::ostream &os, const TrkDriftCircleMath::ClusterId &id)
Definition ClusterId.cxx:9