]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONChannelsBlockStruct.cxx
Splitting the file and simplifying the internal data structure.
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONChannelsBlockStruct.cxx
CommitLineData
cfcef7ba 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 AliHLTMUONChannelsBlockStruct.cxx
20 * @author Artur Szostak <artursz@iafrica.com>
21 * @date
22 * @brief Implementation of the stream and comparison operators.
23 */
24
25#include "AliHLTMUONChannelsBlockStruct.h"
26#include "AliHLTMUONUtils.h"
27#include <cassert>
28
29std::ostream& operator << (
30 std::ostream& stream, const AliHLTMUONChannelStruct& channel
31 )
32{
33 stream << "{fClusterId = " << channel.fClusterId
34 << ", fManu = " << channel.fManu
35 << ", fChannelAddress = " << channel.fChannelAddress
36 << ", fSignal = " << channel.fSignal
37 << ", fRawDataWord = " << std::showbase << std::hex
38 << channel.fRawDataWord << std::dec << "}";
39 return stream;
40}
41
42
43std::ostream& operator << (
44 std::ostream& stream, const AliHLTMUONChannelsBlockStruct& block
45 )
46{
47 assert( AliHLTMUONUtils::IntegrityOk(block) );
48
49 stream << "{fHeader = " << block.fHeader << ", fChannel[] = [";
50 if (block.fHeader.fNrecords > 0) stream << block.fChannel[0];
51 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
52 stream << ", " << block.fChannel[i];
53 stream << "]}";
54 return stream;
55}
56
57
58bool operator == (
59 const AliHLTMUONChannelsBlockStruct& a,
60 const AliHLTMUONChannelsBlockStruct& b
61 )
62{
63 assert( AliHLTMUONUtils::IntegrityOk(a) );
64 assert( AliHLTMUONUtils::IntegrityOk(b) );
65
66 // First check if the blocks have the same header. If they do then check
67 // if every channel is the same. In either case if we find a difference
68 // return false.
69 if (a.fHeader != b.fHeader) return false;
70 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
71 if (a.fChannel[i] != b.fChannel[i]) return false;
72 return true;
73}