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