]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSDigitContainerDataStruct.h
New production macros (Yves)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSDigitContainerDataStruct.h
CommitLineData
1b41ab20 1//-*- Mode: C++ -*-
2// $Id$
3
209a4703 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 *
2374af72 12x * without fee, provided that the above copyright notice appears in all *
209a4703 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 ALIHLTPHOSDIGITCONTAINERSTRUCT_H
21#define ALIHLTPHOSDIGITCONTAINERSTRUCT_H
22
2374af72 23/**
24 * Digit data struct for PHOS HLT
25 *
26 * @file AliHLTPHOSDigitContainerDataStruct.h
27 * @author Oystein Djuvsland
28 * @date
29 * @brief Digit container data struct for PHOS 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
209a4703 38#include "Rtypes.h"
39#include "AliHLTPHOSDigitDataStruct.h"
2374af72 40
41/**
42 * @struct AliHLTPHOSDigitContainerDataStruct
43 * Digit container data struct for PHOS HLT
44 *
45 * @ingroup alihlt_phos
46 */
209a4703 47struct AliHLTPHOSDigitContainerDataStruct
48{
2374af72 49
50 /** Number of digits in container */
51 UInt_t fNDigits; //COMMENT
52
53 /** Module number */
54 UInt_t fPHOSModule; //COMMENT
55
56 /** Array of digits in container */
27029341 57 AliHLTPHOSDigitDataStruct fDigitDataStruct[NXCOLUMNSRCU*NZROWSRCU*NGAINS]; //COMMENT
2374af72 58
209a4703 59};
60
61
62#endif