]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONTrigRecsDebugBlockStruct.cxx
Adding a few utility routines to convert between dHLT data block specification number...
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONTrigRecsDebugBlockStruct.cxx
CommitLineData
c8ec7c7e 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 AliHLTMUONTrigRecsDebugBlockStruct.cxx
20 * @author Artur Szostak <artursz@iafrica.com>
21 * @date
22 * @brief Implementation of useful stream and comparison operators.
23 */
24
25#include "AliHLTMUONTrigRecsDebugBlockStruct.h"
26#include "AliHLTMUONUtils.h"
27#include <cassert>
28
29
30std::ostream& operator << (
31 std::ostream& stream, const AliHLTMUONTrigRecInfoStruct& info
32 )
33{
34 stream << "{fTrigRecId = " << info.fTrigRecId
4a8fa4aa 35 << ", fDetElemId = [" << info.fDetElemId[0]
36 << ", " << info.fDetElemId[1]
37 << ", " << info.fDetElemId[2]
38 << ", " << info.fDetElemId[3]
39 << "], fZmiddle = " << info.fZmiddle
c8ec7c7e 40 << ", fBl = " << info.fBl
41 << "}";
42 return stream;
43}
44
45
46std::ostream& operator << (
47 std::ostream& stream,
48 const AliHLTMUONTrigRecsDebugBlockStruct& block
49 )
50{
51 assert( AliHLTMUONUtils::IntegrityOk(block) );
52
53 stream << "{fHeader = " << block.fHeader << ", fTrigRecInfo[] = [";
54 if (block.fHeader.fNrecords > 0) stream << block.fTrigRecInfo[0];
55 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
56 stream << ", " << block.fTrigRecInfo[i];
57 stream << "]}";
58 return stream;
59}
60
61
62bool operator == (
63 const AliHLTMUONTrigRecsDebugBlockStruct& a,
64 const AliHLTMUONTrigRecsDebugBlockStruct& b
65 )
66{
67 assert( AliHLTMUONUtils::IntegrityOk(a) );
68 assert( AliHLTMUONUtils::IntegrityOk(b) );
69
70 // First check if the blocks have the same header. If they do then check
71 // if all debug information is the same. In either case if we find a
72 // difference return false.
73 if (a.fHeader != b.fHeader) return false;
74 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
75 if (a.fTrigRecInfo[i] != b.fTrigRecInfo[i]) return false;
76 return true;
77}