]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/MUON/AliHLTMUONChannelsBlockStruct.cxx
bug fix
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONChannelsBlockStruct.cxx
index c2ef4ad726c07f90803d2c62b766a9c8a5271289..d10ff7f5b70134617db45944f267daf371ba3026 100644 (file)
@@ -34,6 +34,7 @@ std::ostream& operator << (
                std::ostream& stream, const AliHLTMUONChannelStruct& channel
        )
 {
+       std::ios::fmtflags oldflags = stream.flags();
        stream  << "{fClusterId = " << channel.fClusterId
                << ", fBusPatch = " << channel.fBusPatch
                << ", fManu = " << channel.fManu
@@ -41,6 +42,7 @@ std::ostream& operator << (
                << ", fSignal = " << channel.fSignal
                << ", fRawDataWord = " << std::showbase << std::hex
                << channel.fRawDataWord << std::dec << "}";
+       stream.flags(oldflags);
        return stream;
 }