]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - Flugg/WrapUtils.hh
Adding protected copy constructor and assignment operator
[u/mrichter/AliRoot.git] / Flugg / WrapUtils.hh
index fddb924b1fa113936e0a1e63a57dfa0dbf7e05dc..c1283e91e76b56900b3dfb892cd23e26555e517f 100644 (file)
 #ifndef WrapUtils_hh
 #define WrapUtils_hh 1
 
+//#include <iostream.h>
+#include <iomanip>
 #include "G4NavigationHistory.hh"
 #include "G4ThreeVector.hh"
-#include <iostream.h>
-#include <iomanip.h>
 
 //Forward declarations
 
@@ -30,21 +30,11 @@ G4int StepAndLocation(G4ThreeVector &, const G4ThreeVector &,
 bool EqualHistories(const G4NavigationHistory*, 
                    const G4NavigationHistory*);
 
-// Commonly printed things used in FGeometryInit.cc
-inline ostream& setw10(ostream& os) { return os << G4std::setw(10);}
-inline ostream& setscientific(ostream& os) { return os << G4std::setiosflags(G4std::ios::scientific);}
-inline ostream& setfixed(ostream& os) { return os << G4std::setiosflags(G4std::ios::fixed);}
-ostream& PrintHeader(ostream& os, const char* title);
-ostream& PrintMaterial(ostream& os, const char* title,
-                      G4double Z, G4double A,
-                      G4double density,
-                      G4double index,
-                      G4double N,
-                      const char* name);
-ostream& PrintCompound(ostream& os, const char* title,
-                      G4int count,
-                      const char* name,
-                      G4double fraction,
-                      G4double index);
+// Common print utilities used in FGeometryInit.cc
+inline std::ostream& setw10(std::ostream& os) { return os << std::setw(10);}
+inline std::ostream& setscientific(std::ostream& os) { return os << std::setiosflags(std::ios::scientific);}
+inline std::ostream& setfixed(std::ostream& os) { return os << std::setiosflags(std::ios::fixed);}
+std::ostream& PrintHeader(std::ostream& os, const char* title);
+G4String ToFlukaString(G4String str);
 
 #endif