]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONTrigRecsDebugBlockStruct.cxx
Adding internal HLT data blocks for debugging information from the trigger chambers.
[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
35 << ", fDetElemId = " << info.fDetElemId
36 << ", fZmiddle = " << info.fZmiddle
37 << ", fBl = " << info.fBl
38 << "}";
39 return stream;
40}
41
42
43std::ostream& operator << (
44 std::ostream& stream,
45 const AliHLTMUONTrigRecsDebugBlockStruct& block
46 )
47{
48 assert( AliHLTMUONUtils::IntegrityOk(block) );
49
50 stream << "{fHeader = " << block.fHeader << ", fTrigRecInfo[] = [";
51 if (block.fHeader.fNrecords > 0) stream << block.fTrigRecInfo[0];
52 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
53 stream << ", " << block.fTrigRecInfo[i];
54 stream << "]}";
55 return stream;
56}
57
58
59bool operator == (
60 const AliHLTMUONTrigRecsDebugBlockStruct& a,
61 const AliHLTMUONTrigRecsDebugBlockStruct& b
62 )
63{
64 assert( AliHLTMUONUtils::IntegrityOk(a) );
65 assert( AliHLTMUONUtils::IntegrityOk(b) );
66
67 // First check if the blocks have the same header. If they do then check
68 // if all debug information is the same. In either case if we find a
69 // difference return false.
70 if (a.fHeader != b.fHeader) return false;
71 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
72 if (a.fTrigRecInfo[i] != b.fTrigRecInfo[i]) return false;
73 return true;
74}