ATLAS Offline Software
Loading...
Searching...
No Matches
InDetLowBetaCandidate.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5
7// InDetLowBetaCandidate.cxx
8// Implementation file for class InDetLowBetaCandidate
10// (c) ATLAS Detector software
12// Christopher Marino
14
16#include "GaudiKernel/MsgStream.h"
17
18namespace InDet {
19
21
22 InDetLowBetaCandidate::InDetLowBetaCandidate(float TRTCorrBitsOverThreshold,
23 float TRTTrailingEdge,
24 float TRTTrailingEdgeError,
25 int TRTNLastBits,
26 float TRTdEdx,
27 float TRTLikelihoodBeta,
28 float TRTLikelihoodError,
29 float TRTHighTbits):m_TRTCorrBitsOverThreshold(TRTCorrBitsOverThreshold), m_TRTTrailingEdge( TRTTrailingEdge), m_TRTTrailingEdgeError( TRTTrailingEdgeError), m_TRTNLastBits(TRTNLastBits), m_TRTdEdx(TRTdEdx), m_TRTLikelihoodBeta(TRTLikelihoodBeta), m_TRTLikelihoodError(TRTLikelihoodError), m_TRTHighTbits( TRTHighTbits ) {}
30
58
60
61 MsgStream& InDetLowBetaCandidate::dump(MsgStream& sl) const {
62 sl << "Printing InDet::InDetLowBetaCandidate: " << endmsg;
63 sl << "TRTCorrBitsOverThreshold: " << m_TRTCorrBitsOverThreshold << endmsg;
64 sl << "TRTTrailingEdge: " << m_TRTTrailingEdge << endmsg;
65 sl << "TRTTrailingEdgeError: " << m_TRTTrailingEdgeError << endmsg;
66 sl << "TRTNLastBits: " << m_TRTNLastBits << endmsg;
67 sl << "TRTdEdx: " << m_TRTdEdx << endmsg;
68 sl << "TRTLikelihoodBeta: " << m_TRTLikelihoodBeta << endmsg;
69 sl << "TRTLikelihoodError: " << m_TRTLikelihoodError << endmsg;
70 sl << "TRTHighTbits: " << m_TRTHighTbits << endmsg;
71 return sl;
72 }
73
74
75 MsgStream& operator << ( MsgStream& sl, const InDetLowBetaCandidate& sf)
76 { return sf.dump(sl); }
77
78
79
84
89
94
100 {
101 return m_TRTdEdx;
102 }
112 {
113 return m_TRTHighTbits;
114 }
115
116} // end of namespace
117
118
119
120
#define endmsg
virtual ~InDetLowBetaCandidate()
InDetLowBetaCandidate::InDetLowBetaCandidate(const InDetLowBetaCandidate& rhs) : m_TRTCorrBitsOverThr...
virtual MsgStream & dump(MsgStream &sl) const
Output Method for MsgStream, to be overloaded by child classes.
Primary Vertex Finder.
MsgStream & operator<<(MsgStream &, const GNNTrackFinderTritonTool &)