]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/MUON/AliHLTMUONPairsDecisionBlockStruct.h
patch
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONPairsDecisionBlockStruct.h
index ee38800ed11e75bc3dd8bc4b61c701094045b35e..049508b31c0093e3dcde723f891d1568d7f686b4 100644 (file)
@@ -3,15 +3,14 @@
 /* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
-/* $Id$ */
+// $Id$
 
 /**
  * @file   AliHLTMUONPairsDecisionBlockStruct.h
  * @author Artur Szostak <artursz@iafrica.com>
- * @date   
- * @brief  Definition of internal dimuon HLT trigger decision data structure
- *         containing decision information for pairs of tracks.
- * 
+ * @date   21 May 2007
+ * @brief  Definition of internal dimuon HLT trigger decision data structure containing decision information for pairs of tracks.
+ *
  * The structures are defined with C linkage since C generally gives us more
  * binary compatibility between compilers.
  */
@@ -86,12 +85,12 @@ struct AliHLTMUONPairsDecisionBlockStruct
        // pt > low pt cut and unlike sign.
        AliHLTUInt32_t fNmassLow;
        
-       // Number of pairs that have invariant mass > low mass cut,
+       // Number of pairs that have invariant mass > high mass cut,
        // pt > high pt cut and unlike sign.
        AliHLTUInt32_t fNmassHigh;
 
        // Array of decisions for track pairs.
-       AliHLTMUONPairDecisionStruct fDecision[/*fHeader.fNrecords*/];
+       //AliHLTMUONPairDecisionStruct fDecision[/*fHeader.fNrecords*/];
 };
 
 } // extern "C"
@@ -106,10 +105,12 @@ inline std::ostream& operator << (
                std::ostream& stream, const AliHLTMUONPairDecisionStruct& trig
        )
 {
+       std::ios::fmtflags oldflags = stream.flags();
        stream  << "{fTrackAId = " << trig.fTrackAId
                << ", fTrackBId = " << trig.fTrackBId << ", fTriggerBits = "
                << std::showbase << std::hex << trig.fTriggerBits << std::dec
                << ", fInvMass = " << trig.fInvMass << "}";
+       stream.flags(oldflags);
        return stream;
 }