ATLAS Offline Software
Loading...
Searching...
No Matches
TRT_DriftCirclesSeed.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3*/
4
6// Implementation file for class TRT_DriftCirclesSeed
8// (c) ATLAS Detector software
11// Version 1.0 11/10/2005 I.Gavrilenko
13
14#include <iostream>
15#include <iomanip>
16#include "GaudiKernel/MsgStream.h"
18
19namespace InDet {
20
22 // Copy constructor
24
26
27 = default;
28
30 // Operator =
32
34 = default;
35
37 // Dumps relevant information into the MsgStream
39
40 MsgStream& TRT_DriftCirclesSeed::dump( MsgStream& out ) const
41 {
42 return out;
43 }
44
46 // Dumps relevant information into the ostream
48
49 std::ostream& TRT_DriftCirclesSeed::dump( std::ostream& out ) const
50 {
51 return out;
52 }
53
55 // Overload of << operator MsgStream
57
58 MsgStream& operator << (MsgStream& sl,const TRT_DriftCirclesSeed& se)
59 {
60 return se.dump(sl);
61 }
62
63 // Overload of << operator std::ostream
65
66 std::ostream& operator << (std::ostream& sl,const TRT_DriftCirclesSeed& se)
67 {
68 return se.dump(sl);
69 }
70
71} // end of name space
72
73
74
75
76
TRT_DriftCirclesSeed & operator=(const TRT_DriftCirclesSeed &)
virtual MsgStream & dump(MsgStream &out) const
Primary Vertex Finder.
MsgStream & operator<<(MsgStream &, const GNNTrackFinderTritonTool &)