]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/MUON/AliHLTMUONConstants.cxx
Adding header files common to dimuon HLT.
[u/mrichter/AliRoot.git] / HLT / MUON / AliHLTMUONConstants.cxx
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   AliHLTMUONConstants.cxx
20  * @author Indranil Das <indra.das@saha.ac.in>,
21  *         Artur Szostak <artursz@iafrica.com>
22  * @date   
23  * @brief  Definitions of the various dimuon HLT constants.
24  */
25
26 #include "AliHLTMUONConstants.h"
27
28 const AliHLTMUONRecHitStruct
29 AliHLTMUONConstants::fgkNilRecHitStruct = {0, 0, 0};
30
31 const AliHLTMUONChannelInfoStruct
32 AliHLTMUONConstants::fgkNilChannelInfoStruct = {0, 0, 0, 0};
33
34 const AliHLTComponentDataType
35 AliHLTMUONConstants::fgkTriggerDDLStreamDataType = {
36         sizeof(AliHLTComponentDataType),
37         {'D','D','L','T','R','I','G','R'},
38         {'D','I','M','U'}
39 };
40
41 const AliHLTComponentDataType
42 AliHLTMUONConstants::fgkTrackingDDLStreamDataType = {
43         sizeof(AliHLTComponentDataType),
44         {'D','D','L','T','R','A','C','K'},
45         {'D','I','M','U'}
46 };
47
48 const AliHLTComponentDataType
49 AliHLTMUONConstants::fgkRecHitsBlockDataType = {
50         sizeof(AliHLTComponentDataType),
51         {'R','E','C','H','I','T','S',' '},
52         {'D','I','M','U'}
53 };
54
55 const AliHLTComponentDataType
56 AliHLTMUONConstants::fgkRecHitsDebugBlockDataType = {
57         sizeof(AliHLTComponentDataType),
58         {'R','H','I','T','S','d','b','g'},
59         {'D','I','M','U'}
60 };
61
62 const AliHLTComponentDataType
63 AliHLTMUONConstants::fgkTriggerRecordsBlockDataType = {
64         sizeof(AliHLTComponentDataType),
65         {'T','R','I','G','R','E','C','S'},
66         {'D','I','M','U'}
67 };
68
69 const AliHLTComponentDataType
70 AliHLTMUONConstants::fgkTriggerRecordsDebugBlockDataType = {
71         sizeof(AliHLTComponentDataType),
72         {'T','R','I','G','R','d','b','g'},
73         {'D','I','M','U'}
74 };
75
76 const AliHLTComponentDataType
77 AliHLTMUONConstants::fgkMansoTracksBlockDataType = {
78         sizeof(AliHLTComponentDataType),
79         {'M','A','N','T','R','A','C','K'},
80         {'D','I','M','U'}
81 };
82
83 const AliHLTComponentDataType
84 AliHLTMUONConstants::fgkMansoTracksDebugBlockDataType = {
85         sizeof(AliHLTComponentDataType),
86         {'M','N','T','R','K','d','b','g'},
87         {'D','I','M','U'}
88 };
89
90 const AliHLTComponentDataType
91 AliHLTMUONConstants::fgkDecisionBlockDataType = {
92         sizeof(AliHLTComponentDataType),
93         {'D','E','C','I','S','I','O','N'},
94         {'D','I','M','U'}
95 };
96
97 const AliHLTComponentDataType
98 AliHLTMUONConstants::fgkDecisionDebugBlockDataType = {
99         sizeof(AliHLTComponentDataType),
100         {'D','E','C','I','S','d','b','g'},
101         {'D','I','M','U'}
102 };