]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONMansoCandidatesBlockStruct.cxx
Minor cleanup of code.
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONMansoCandidatesBlockStruct.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 AliHLTMUONMansoCandidatesBlockStruct.cxx
20 * @author Artur Szostak <artursz@iafrica.com>
21 * @date
22 * @brief Implementation of useful stream and comparison operators.
23 */
24
25#include "AliHLTMUONMansoCandidatesBlockStruct.h"
26#include "AliHLTMUONUtils.h"
27#include <cassert>
28
29
30std::ostream& operator << (
31 std::ostream& stream, const AliHLTMUONMansoRoIStruct& roi
32 )
33{
34 stream << "{fX = " << roi.fX
35 << ", fY = " << roi.fY
36 << ", fZ = " << roi.fZ
37 << ", fRadius = " << roi.fRadius
38 << "}";
39 return stream;
40}
41
42std::ostream& operator << (
43 std::ostream& stream,
44 const AliHLTMUONMansoCandidateStruct& candidate
45 )
46{
47 stream << "{fTrack = " << candidate.fTrack
48 << ", fRoI[0] = " << candidate.fRoI[0]
49 << ", fRoI[1] = " << candidate.fRoI[1]
50 << ", fRoI[2] = " << candidate.fRoI[2]
51 << ", fRoI[3] = " << candidate.fRoI[3]
52 << "}";
53 return stream;
54}
55
56
57std::ostream& operator << (
58 std::ostream& stream,
59 const AliHLTMUONMansoCandidatesBlockStruct& block
60 )
61{
62 assert( AliHLTMUONUtils::IntegrityOk(block) );
63
64 stream << "{fHeader = " << block.fHeader << ", fCandidate[] = [";
65 if (block.fHeader.fNrecords > 0) stream << block.fCandidate[0];
66 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
67 stream << ", " << block.fCandidate[i];
68 stream << "]}";
69 return stream;
70}
71
72
73bool operator == (
74 const AliHLTMUONMansoCandidatesBlockStruct& a,
75 const AliHLTMUONMansoCandidatesBlockStruct& b
76 )
77{
78 assert( AliHLTMUONUtils::IntegrityOk(a) );
79 assert( AliHLTMUONUtils::IntegrityOk(b) );
80
81 // First check if the blocks have the same header. If they do then check
82 // if every track candidate is the same. In either case if we find a
83 // difference return false.
84 if (a.fHeader != b.fHeader) return false;
85 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
86 if (a.fCandidate[i] != b.fCandidate[i]) return false;
87 return true;
88}