]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Use Riostream.h to resolve the std namespace (Alpha, HP)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 10 Oct 2002 07:37:49 +0000 (07:37 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 10 Oct 2002 07:37:49 +0000 (07:37 +0000)
PHOS/AliPHOSPIDv1.cxx

index d5e2eb78834ad12916532d686f05c44100fa7f10..b752e0031fd8ed868a6ad11efa4f7add7bea156f 100644 (file)
@@ -80,7 +80,7 @@
 
 // --- Standard library ---
 
-#include <iostream>
+#include <Riostream.h>
 #include <fstream>
 #include <iomanip>
 
@@ -989,8 +989,8 @@ void AliPHOSPIDv1::PrintRecParticles(Option_t * option)
     for (index = 0 ; index < recParticles->GetEntries() ; index++) {
        AliPHOSRecParticle * rp = (AliPHOSRecParticle * ) recParticles->At(index) ;       
 
-       cout << std::setw(10) << rp->Name() << "  "
-           << std::setw(5) <<  rp->GetIndexInList() << " " <<endl;
+       cout << setw(10) << rp->Name() << "  "
+           << setw(5) <<  rp->GetIndexInList() << " " <<endl;
        cout << "Type "<<  rp->GetType() << endl;
     }
     cout << "-------------------------------------------" << endl ;