]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONTrigRecsDebugBlockStruct.cxx
Integrating dimuon HLT with AliSimulation framework via AliHLTSystem interfaces.
[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
23ad6161 53 const AliHLTMUONTrigRecInfoStruct* trigRecInfo =
54 reinterpret_cast<const AliHLTMUONTrigRecInfoStruct*>(&block + 1);
c8ec7c7e 55 stream << "{fHeader = " << block.fHeader << ", fTrigRecInfo[] = [";
23ad6161 56 if (block.fHeader.fNrecords > 0) stream << trigRecInfo[0];
c8ec7c7e 57 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
23ad6161 58 stream << ", " << trigRecInfo[i];
c8ec7c7e 59 stream << "]}";
60 return stream;
61}
62
63
64bool operator == (
65 const AliHLTMUONTrigRecsDebugBlockStruct& a,
66 const AliHLTMUONTrigRecsDebugBlockStruct& b
67 )
68{
69 assert( AliHLTMUONUtils::IntegrityOk(a) );
70 assert( AliHLTMUONUtils::IntegrityOk(b) );
71
23ad6161 72 const AliHLTMUONTrigRecInfoStruct* trigRecInfoA =
73 reinterpret_cast<const AliHLTMUONTrigRecInfoStruct*>(&a + 1);
74 const AliHLTMUONTrigRecInfoStruct* trigRecInfoB =
75 reinterpret_cast<const AliHLTMUONTrigRecInfoStruct*>(&b + 1);
76
c8ec7c7e 77 // First check if the blocks have the same header. If they do then check
78 // if all debug information is the same. In either case if we find a
79 // difference return false.
80 if (a.fHeader != b.fHeader) return false;
81 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
23ad6161 82 if (trigRecInfoA[i] != trigRecInfoB[i]) return false;
c8ec7c7e 83 return true;
84}