]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONMansoCandidatesBlockStruct.cxx
Integrating dimuon HLT with AliSimulation framework via AliHLTSystem interfaces.
[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
23ad6161 64 const AliHLTMUONMansoCandidateStruct* candidate =
65 reinterpret_cast<const AliHLTMUONMansoCandidateStruct*>(&block + 1);
90a74d7a 66 stream << "{fHeader = " << block.fHeader << ", fCandidate[] = [";
23ad6161 67 if (block.fHeader.fNrecords > 0) stream << candidate[0];
90a74d7a 68 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
23ad6161 69 stream << ", " << candidate[i];
90a74d7a 70 stream << "]}";
71 return stream;
72}
73
74
75bool operator == (
76 const AliHLTMUONMansoCandidatesBlockStruct& a,
77 const AliHLTMUONMansoCandidatesBlockStruct& b
78 )
79{
80 assert( AliHLTMUONUtils::IntegrityOk(a) );
81 assert( AliHLTMUONUtils::IntegrityOk(b) );
23ad6161 82
83 const AliHLTMUONMansoCandidateStruct* candidateA =
84 reinterpret_cast<const AliHLTMUONMansoCandidateStruct*>(&a + 1);
85 const AliHLTMUONMansoCandidateStruct* candidateB =
86 reinterpret_cast<const AliHLTMUONMansoCandidateStruct*>(&b + 1);
90a74d7a 87
88 // First check if the blocks have the same header. If they do then check
89 // if every track candidate is the same. In either case if we find a
90 // difference return false.
91 if (a.fHeader != b.fHeader) return false;
92 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
23ad6161 93 if (candidateA[i] != candidateB[i]) return false;
90a74d7a 94 return true;
95}