]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONPairsDecisionBlockStruct.cxx
Minor cleanup of code.
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONPairsDecisionBlockStruct.cxx
CommitLineData
90a74d7a 1/**************************************************************************
2 * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
18/**
19 * @file AliHLTMUONPairsDecisionBlockStruct.cxx
20 * @author Artur Szostak <artursz@iafrica.com>
21 * @date
22 * @brief Implementation of useful stream and comparison operators.
23 */
24
25#include "AliHLTMUONPairsDecisionBlockStruct.h"
26#include "AliHLTMUONUtils.h"
27#include <cassert>
28
29
30std::ostream& operator << (
31 std::ostream& stream,
32 const AliHLTMUONPairsDecisionBlockStruct& block
33 )
34{
35 assert( AliHLTMUONUtils::IntegrityOk(block) );
36
37 stream << "{fHeader = " << block.fHeader
18ce6ea1 38 << ", fNunlikeAnyPt = " << block.fNunlikeAnyPt
90a74d7a 39 << ", fNunlikeLowPt = " << block.fNunlikeLowPt
40 << ", fNunlikeHighPt = " << block.fNunlikeHighPt
18ce6ea1 41 << ", fNlikeAnyPt = " << block.fNlikeAnyPt
90a74d7a 42 << ", fNlikeLowPt = " << block.fNlikeLowPt
43 << ", fNlikeHighPt = " << block.fNlikeHighPt
44 << ", fNmassAny = " << block.fNmassAny
45 << ", fNmassLow = " << block.fNmassLow
46 << ", fNmassHigh = " << block.fNmassHigh
47 << ", fDecision[] = [";
48 if (block.fHeader.fNrecords > 0) stream << block.fDecision[0];
49 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
50 stream << ", " << block.fDecision[i];
51 stream << "]}";
52 return stream;
53}
54
55
56bool operator == (
57 const AliHLTMUONPairsDecisionBlockStruct& a,
58 const AliHLTMUONPairsDecisionBlockStruct& b
59 )
60{
61 assert( AliHLTMUONUtils::IntegrityOk(a) );
62 assert( AliHLTMUONUtils::IntegrityOk(b) );
63
64 // First check if the blocks have the same header. If they do then
65 // check if every track pair's decision is the same. In either case if
66 // we find a difference return false.
67 if (a.fHeader != b.fHeader) return false;
18ce6ea1 68 if (a.fNunlikeAnyPt != b.fNunlikeAnyPt) return false;
90a74d7a 69 if (a.fNunlikeLowPt != b.fNunlikeLowPt) return false;
70 if (a.fNunlikeHighPt != b.fNunlikeHighPt) return false;
18ce6ea1 71 if (a.fNlikeAnyPt != b.fNlikeAnyPt) return false;
90a74d7a 72 if (a.fNlikeLowPt != b.fNlikeLowPt) return false;
73 if (a.fNlikeHighPt != b.fNlikeHighPt) return false;
74 if (a.fNmassAny != b.fNmassAny) return false;
75 if (a.fNmassLow != b.fNmassLow) return false;
76 if (a.fNmassHigh != b.fNmassHigh) return false;
77 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
78 if (a.fDecision[i] != b.fDecision[i]) return false;
79 return true;
80}