Skip to content
Snippets Groups Projects
Commit be594c4d authored by Atlas-Software Librarian's avatar Atlas-Software Librarian Committed by Graeme Stewart
Browse files

'CMakeLists.txt' (InDetLowBetaInfo-00-02-03)

        * Tagging InDetLowBetaInfo-00-02-03.
	* Const fixes.
parent 54985600
No related branches found
No related tags found
No related merge requests found
################################################################################
# Package: InDetLowBetaInfo
################################################################################
# Declare the package name:
atlas_subdir( InDetLowBetaInfo )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
Control/CLIDSvc
Control/DataModel
Control/SGTools
GaudiKernel )
# External dependencies:
find_package( ROOT COMPONENTS Core Tree MathCore Hist RIO pthread )
# Component(s) in the package:
atlas_add_library( InDetLowBetaInfo
src/*.cxx
PUBLIC_HEADERS InDetLowBetaInfo
PRIVATE_INCLUDE_DIRS ${ROOT_INCLUDE_DIRS}
LINK_LIBRARIES DataModel SGTools GaudiKernel
PRIVATE_LINK_LIBRARIES ${ROOT_LIBRARIES} )
atlas_add_dictionary( InDetLowBetaInfoDict
InDetLowBetaInfo/InDetLowBetaDict.h
InDetLowBetaInfo/selection.xml
INCLUDE_DIRS ${ROOT_INCLUDE_DIRS}
LINK_LIBRARIES ${ROOT_LIBRARIES} DataModel SGTools GaudiKernel InDetLowBetaInfo )
...@@ -48,14 +48,14 @@ namespace InDet{ ...@@ -48,14 +48,14 @@ namespace InDet{
/** Output Method for std::ostream, to be overloaded by child classes */ /** Output Method for std::ostream, to be overloaded by child classes */
//virtual std::ostream& dump(std::ostream& sl) const; //virtual std::ostream& dump(std::ostream& sl) const;
float getTRTCorrBitsOverThreshold(); float getTRTCorrBitsOverThreshold() const;
float getTRTTrailingEdge(); float getTRTTrailingEdge() const;
float getTRTTrailingEdgeError(); float getTRTTrailingEdgeError() const;
int getTRTNLastBits(); int getTRTNLastBits() const;
float getTRTdEdx(); float getTRTdEdx() const;
float getTRTLikelihoodBeta(); float getTRTLikelihoodBeta() const;
float getTRTLikelihoodError(); float getTRTLikelihoodError() const;
float getTRTHighTbits(); float getTRTHighTbits() const;
protected: protected:
float m_TRTCorrBitsOverThreshold; float m_TRTCorrBitsOverThreshold;
......
...@@ -85,38 +85,38 @@ namespace InDet { ...@@ -85,38 +85,38 @@ namespace InDet {
//std::ostream& operator << ( std::ostream& sl, const InDetLowBetaCandidate& sf) //std::ostream& operator << ( std::ostream& sl, const InDetLowBetaCandidate& sf)
// { return sf.dump(sl); } // { return sf.dump(sl); }
float InDetLowBetaCandidate::getTRTCorrBitsOverThreshold() float InDetLowBetaCandidate::getTRTCorrBitsOverThreshold() const
{ {
return m_TRTCorrBitsOverThreshold; return m_TRTCorrBitsOverThreshold;
} }
float InDetLowBetaCandidate::getTRTTrailingEdge() float InDetLowBetaCandidate::getTRTTrailingEdge() const
{ {
return m_TRTTrailingEdge; return m_TRTTrailingEdge;
} }
float InDetLowBetaCandidate::getTRTTrailingEdgeError() float InDetLowBetaCandidate::getTRTTrailingEdgeError() const
{ {
return m_TRTTrailingEdgeError; return m_TRTTrailingEdgeError;
} }
int InDetLowBetaCandidate::getTRTNLastBits() int InDetLowBetaCandidate::getTRTNLastBits() const
{ {
return m_TRTNLastBits; return m_TRTNLastBits;
} }
float InDetLowBetaCandidate::getTRTdEdx() float InDetLowBetaCandidate::getTRTdEdx() const
{ {
return m_TRTdEdx; return m_TRTdEdx;
} }
float InDetLowBetaCandidate::getTRTLikelihoodBeta() float InDetLowBetaCandidate::getTRTLikelihoodBeta() const
{ {
return m_TRTLikelihoodBeta; return m_TRTLikelihoodBeta;
} }
float InDetLowBetaCandidate::getTRTLikelihoodError() float InDetLowBetaCandidate::getTRTLikelihoodError() const
{ {
return m_TRTLikelihoodError; return m_TRTLikelihoodError;
} }
float InDetLowBetaCandidate::getTRTHighTbits() float InDetLowBetaCandidate::getTRTHighTbits() const
{ {
return m_TRTHighTbits; return m_TRTHighTbits;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment