From c22940f39848ab152572c45684f3ed133f85e4b5 Mon Sep 17 00:00:00 2001 From: aszostak Date: Wed, 9 Nov 2011 16:46:06 +0000 Subject: [PATCH] Fix for changes in TString behaviour in ROOT 5.30 --- HLT/BASE/AliHLTHOMERSourceDesc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HLT/BASE/AliHLTHOMERSourceDesc.h b/HLT/BASE/AliHLTHOMERSourceDesc.h index 74606cdbd75..7448e1baf0c 100644 --- a/HLT/BASE/AliHLTHOMERSourceDesc.h +++ b/HLT/BASE/AliHLTHOMERSourceDesc.h @@ -97,7 +97,7 @@ public: /** Get node name of this source * @return hostname */ - TString GetHostname() { return fHostname; } + TString& GetHostname() { return fHostname; } /** Get node name of this source * @return port @@ -107,12 +107,12 @@ public: /** Get name of this source * @return name */ - TString GetSourceName() { return fSourceName; } + TString& GetSourceName() { return fSourceName; } /** Get detector of this source * @return detector */ - TString GetDetector() { return fDetector; } + TString& GetDetector() { return fDetector; } /** Get sub detector of this source * @return subdetector @@ -127,7 +127,7 @@ public: /** Get HLT data type of this source * @return HLT data type */ - TString GetDataType() { return fDataType; } + TString& GetDataType() { return fDataType; } /** Get HLT specification of this source * @return HLT specification -- 2.43.0