]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/AliHLTMUONTriggerRecordsBlockStruct.cxx
Cleanup of documentation and code.
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONTriggerRecordsBlockStruct.cxx
CommitLineData
053e588f 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 AliHLTMUONTriggerRecordsBlockStruct.cxx
20 * @author Artur Szostak <artursz@iafrica.com>
21 * @date
22 * @brief Implementation of useful stream and comparison operators.
23 */
24
25#include "AliHLTMUONTriggerRecordsBlockStruct.h"
26#include "AliHLTMUONUtils.h"
27#include <cassert>
28
29
30std::ostream& operator << (
31 std::ostream& stream, const AliHLTMUONTriggerRecordStruct& trigrec
32 )
33{
34 stream << "{fId = " << trigrec.fFlags
35 << ", fFlags = " << std::showbase << std::hex
36 << trigrec.fFlags << std::dec
37 << ", fPx = " << trigrec.fPx
38 << ", fPy = " << trigrec.fPy
39 << ", fPz = " << trigrec.fPz
40 << ", fHit[0] = " << trigrec.fHit[0]
41 << ", fHit[1] = " << trigrec.fHit[1]
42 << ", fHit[2] = " << trigrec.fHit[2]
43 << ", fHit[3] = " << trigrec.fHit[3]
44 << "}";
45 return stream;
46}
47
48
49std::ostream& operator << (
50 std::ostream& stream,
51 const AliHLTMUONTriggerRecordsBlockStruct& block
52 )
53{
54 assert( AliHLTMUONUtils::IntegrityOk(block) );
55
23ad6161 56 const AliHLTMUONTriggerRecordStruct* triggerRecord =
57 reinterpret_cast<const AliHLTMUONTriggerRecordStruct*>(&block + 1);
053e588f 58 stream << "{fHeader = " << block.fHeader << ", fTriggerRecord[] = [";
23ad6161 59 if (block.fHeader.fNrecords > 0) stream << triggerRecord[0];
053e588f 60 for (AliHLTUInt32_t i = 1; i < block.fHeader.fNrecords; i++)
23ad6161 61 stream << ", " << triggerRecord[i];
053e588f 62 stream << "]}";
63 return stream;
64}
65
66
67bool operator == (
68 const AliHLTMUONTriggerRecordsBlockStruct& a,
69 const AliHLTMUONTriggerRecordsBlockStruct& b
70 )
71{
72 assert( AliHLTMUONUtils::IntegrityOk(a) );
73 assert( AliHLTMUONUtils::IntegrityOk(b) );
74
23ad6161 75 const AliHLTMUONTriggerRecordStruct* triggerRecordA =
76 reinterpret_cast<const AliHLTMUONTriggerRecordStruct*>(&a + 1);
77 const AliHLTMUONTriggerRecordStruct* triggerRecordB =
78 reinterpret_cast<const AliHLTMUONTriggerRecordStruct*>(&b + 1);
053e588f 79 // First check if the blocks have the same header. If they do then check
80 // if every trigger record is the same. In either case if we find a
81 // difference return false.
82 if (a.fHeader != b.fHeader) return false;
83 for (AliHLTUInt32_t i = 0; i < a.fHeader.fNrecords; i++)
23ad6161 84 if (triggerRecordA[i] != triggerRecordB[i]) return false;
053e588f 85 return true;
86}