]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixing missing references to the std namespace (Laurent)
authorpcrochet <pcrochet@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 28 Sep 2013 15:20:50 +0000 (15:20 +0000)
committerpcrochet <pcrochet@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 28 Sep 2013 15:20:50 +0000 (15:20 +0000)
PWG/muondep/AliAnalysisMuMu.cxx
PWG/muondep/AliMuonQAMergeSubmitter.cxx

index 1eec1cf1d3e6aa41988876e2940a31b62c0b22c6..4b794769576970455a814e3b7a671d341da09fe8 100644 (file)
@@ -1278,7 +1278,7 @@ void AliAnalysisMuMu::TwikiOutputFnorm(const char* series) const
     graphs.Add(g);
   }
   
-  std::cout << endl;
+  std::cout << std::endl;
   
   TGraphErrors* g0 = static_cast<TGraphErrors*>(graphs.First());
   if (!g0) return;
index 7bdb6cd2cc246450d51c18fac3b336a3fdcc7961..85818a29ba0852fd8be9adaca079f2122d2f6063 100644 (file)
@@ -191,7 +191,7 @@ UInt_t AliMuonQAMergeSubmitter::MakeXMLCollectionForRun(Int_t runNumber, Int_t s
     
     size += TString(res->GetKey(i,"size")).Atoll();
     
-    out << Form("    <event name=\"%d\">",count) << endl;
+    out << Form("    <event name=\"%d\">",count) << std::endl;
     out << Form("      <file name=\"%s\" aclId=\"%s\" broken=\"%s\" ctime=\"%s\" "
                 "dir=\"%s\" entryId=\"%s\" expiretime=\"%s\" gowner=\"%s\" "
                 "guid=\"%s\" guidtime=\"%s\" lfn=\"%s\" md5=\"%s\" owner=\"%s\" "
@@ -213,15 +213,15 @@ UInt_t AliMuonQAMergeSubmitter::MakeXMLCollectionForRun(Int_t runNumber, Int_t s
                 res->GetKey(i,"replicated"),
                 res->GetKey(i,"size"),
                 res->GetKey(i,"turl"),
-                res->GetKey(i,"type")) << endl;
-    out <<      "    </event>" << endl;
+                res->GetKey(i,"type")) << std::endl;
+    out <<      "    </event>" << std::endl;
   }
   
   TString summary(Form("numberoffiles=\"%d\" size=\"%7.2f GB\" ",count,size/byte2GB));
   
-  out << Form("  <summary %s />",summary.Data()) << endl;
-  out << "  </collection>" << endl;
-  out << "</alien>" << endl;
+  out << Form("  <summary %s />",summary.Data()) << std::endl;
+  out << "  </collection>" << std::endl;
+  out << "</alien>" << std::endl;
   
   out.close();