]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONChannelsBlockStruct.cxx
Disable retireval of DCS data points from AliShuttle for SDD
[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
1d8ae082 16// $Id$
cfcef7ba 17
dba14d7d 18///
19/// @file AliHLTMUONChannelsBlockStruct.cxx
20/// @author Artur Szostak <artursz@iafrica.com>
21/// @date 18 May 2007
22/// @brief Implementation of the stream and comparison operators.
23///
24/// The channels blocks are internal dimuon HLT block structures containing
25/// debugging information about channels that belong to reconstructed
26/// hit clusters.
27///
cfcef7ba 28
29#include "AliHLTMUONChannelsBlockStruct.h"
30#include "AliHLTMUONUtils.h"
31#include <cassert>
32
33std::ostream& operator << (
34 std::ostream& stream, const AliHLTMUONChannelStruct& channel
35 )
36{
710ddf4b 37 std::ios::fmtflags oldflags = stream.flags();
cfcef7ba 38 stream << "{fClusterId = " << channel.fClusterId
dba14d7d 39 << ", fBusPatch = " << channel.fBusPatch
cfcef7ba 40 << ", fManu = " << channel.fManu
41 << ", fChannelAddress = " << channel.fChannelAddress
42 << ", fSignal = " << channel.fSignal
43 << ", fRawDataWord = " << std::showbase << std::hex
44 << channel.fRawDataWord << std::dec << "}";
710ddf4b 45 stream.flags(oldflags);
cfcef7ba 46 return stream;
47}
48
49
50std::ostream& operator << (
51 std::ostream& stream, const AliHLTMUONChannelsBlockStruct& block
52 )
53{
54 assert( AliHLTMUONUtils::IntegrityOk(block) );
55
23ad6161 56 const AliHLTMUONChannelStruct* channel =
57 reinterpret_cast<const AliHLTMUONChannelStruct*>(&block + 1);
cfcef7ba 58 stream << "{fHeader = " << block.fHeader << ", fChannel[] = [";
23ad6161 59 if (block.fHeader.fNrecords > 0) stream << channel[0];
cfcef7ba 60 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
23ad6161 61 stream << ", " << channel[i];
cfcef7ba 62 stream << "]}";
63 return stream;
64}
65
66
67bool operator == (
68 const AliHLTMUONChannelsBlockStruct& a,
69 const AliHLTMUONChannelsBlockStruct& b
70 )
71{
72 assert( AliHLTMUONUtils::IntegrityOk(a) );
73 assert( AliHLTMUONUtils::IntegrityOk(b) );
23ad6161 74
75 const AliHLTMUONChannelStruct* channelA =
76 reinterpret_cast<const AliHLTMUONChannelStruct*>(&a + 1);
77 const AliHLTMUONChannelStruct* channelB =
78 reinterpret_cast<const AliHLTMUONChannelStruct*>(&b + 1);
cfcef7ba 79
80 // First check if the blocks have the same header. If they do then check
81 // if every channel is the same. In either case if we find a difference
82 // return false.
83 if (a.fHeader != b.fHeader) return false;
84 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
23ad6161 85 if (channelA[i] != channelB[i]) return false;
cfcef7ba 86 return true;
87}