]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONSt1IniReader.cxx
coding conventions corrections for St1 classes (Ivana Hirvnacova)
[u/mrichter/AliRoot.git] / MUON / AliMUONSt1IniReader.cxx
index 4d95eccdd0b5f1e52f17027075297e96a8733362..5191244407bec0244eac7eb02ffc9c0daea96159 100644 (file)
@@ -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 <s>
 // ---