X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONSt1IniReader.cxx;fp=MUON%2FAliMUONSt1IniReader.cxx;h=5191244407bec0244eac7eb02ffc9c0daea96159;hb=3c25381f7ba08e8d084a72f0515b596bb794e36d;hp=4d95eccdd0b5f1e52f17027075297e96a8733362;hpb=917901499e9b424d136486631e3860a026d275af;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONSt1IniReader.cxx b/MUON/AliMUONSt1IniReader.cxx index 4d95eccdd0b..5191244407b 100644 --- a/MUON/AliMUONSt1IniReader.cxx +++ b/MUON/AliMUONSt1IniReader.cxx @@ -108,17 +108,17 @@ bool AliMUONSt1IniReader::ReadNextLine() if (c=='[') { // this is a chapter name getline(l,fCurrentName,']'); - fCurrentName=trail(fCurrentName); + fCurrentName=Trail(fCurrentName); fCurrentType=kChapter; return true; } else { if (line.find_first_of("=") != string::npos ) { l.putback(c); getline(l,fCurrentName,'='); - fCurrentName = trail(fCurrentName); + fCurrentName = Trail(fCurrentName); getline(l,fCurrentValue); - fCurrentValue = trail(fCurrentValue); + fCurrentValue = Trail(fCurrentValue); fCurrentType=kValue; return true; } else { @@ -186,7 +186,7 @@ AliMUONSt1IniReader::TChapterList AliMUONSt1IniReader::MakeChapterList() } //______________________________________________________________________ -string AliMUONSt1IniReader::trail(const string& s) const +string AliMUONSt1IniReader::Trail(const string& s) const { // Utility function: clear the blanks before and after the string // ---