]> 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 b7edcb4875fff8a76d001bc62bfaff000c6b38d3..dbe77041ab9e781e25226a080a4e5644ced9eb85 100644 (file)
@@ -3,7 +3,7 @@
 /* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
-/* $Id$ */
+// $Id$
 
 /**
  * @file   AliHLTMUONRecHitsBlockStruct.h
@@ -11,7 +11,7 @@
  *         Artur Szostak <artursz@iafrica.com>
  * @date   17 May 2007
  * @brief  Definition of internal dimuon HLT reconstructed hit data block structure.
- * 
+ *
  * The structures are defined with C linkage since C generally gives us more
  * binary compatibility between compilers.
  */
@@ -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;
 }