]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CALO/AliHLTCaloDigitContainerDataStruct.h
coverity fix, plus adding some debug info to the analysis macro
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloDigitContainerDataStruct.h
CommitLineData
ef44ec64 1//-*- Mode: C++ -*-
2// $Id: AliHLTCaloDigitContainerDataStruct.h 35107 2009-09-30 01:45:06Z phille $
3
4/**************************************************************************
5 * This file is property of and copyright by the ALICE HLT Project *
6 * All rights reserved. *
7 * *
8 * Primary Authors: Oystein Djuvsland *
9 * *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12x * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
18
19
20#ifndef ALIHLTCALODIGITCONTAINERSTRUCT_H
21#define ALIHLTCALODIGITCONTAINERSTRUCT_H
22
23/**
24 * Digit data struct for CALO HLT
25 *
26 * @file AliHLTCaloDigitContainerDataStruct.h
27 * @author Oystein Djuvsland
28 * @date
29 * @brief Digit container data struct for CALO HLT
30 */
31
32// see below for class documentation
33// or
34// refer to README to build package
35// or
36// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
37
38#include "Rtypes.h"
39#include "AliHLTCaloDigitDataStruct.h"
ef44ec64 40
41
76ffc0ce 42
43// using namespace CaloHLTConst;
ef44ec64 44
45/**
46 * @struct AliHLTCaloDigitContainerDataStruct
47 * Digit container data struct for Calo HLT
48 *
49 * @ingroup alihlt_calo
50 */
51struct AliHLTCaloDigitContainerDataStruct
52{
53
54 /** Number of digits in container */
55 UInt_t fNDigits; //COMMENT
56
57 /** Module number */
58 UInt_t fCaloModule; //COMMENT
59
60 /** Array of digits in container */
ad44d760 61 AliHLTCaloDigitDataStruct fDigitDataStruct[10000];
ef44ec64 62
63};
64
65
66#endif