]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/MUON/AliHLTMUONRecHitsBlockStruct.h
Disable retireval of DCS data points from AliShuttle for SDD
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONRecHitsBlockStruct.h
index a3a263a3d0e780f99c7df664eb51e48c3f8ff678..dbe77041ab9e781e25226a080a4e5644ced9eb85 100644 (file)
@@ -69,9 +69,11 @@ inline std::ostream& operator << (
                std::ostream& stream, const AliHLTMUONRecHitStruct& hit
        )
 {
+       std::ios::fmtflags oldflags = stream.flags();
        stream  << "{fFlags = " << std::showbase << std::hex
                << hit.fFlags << std::dec << ", fX = " << hit.fX
                << ", fY = " << hit.fY << ", fZ = " << hit.fZ << "}";
+       stream.flags(oldflags);
        return stream;
 }