]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSCaloClusterContainerStruct.h
- PHOS clusterizer component now inherits from CALO clusterizer component
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSCaloClusterContainerStruct.h
CommitLineData
1b41ab20 1//-*- Mode: C++ -*-
2// $Id$
3
6a76e30e 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 *
12 * 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#ifndef ALIHLTPHOSCALOCLUSTERCOINTAINERSTRUCT_H
20#define ALIHLTPHOSCALOCLUSTERCOINTAINERSTRUCT_H
21/**
22 * Calo cluster container struct for PHOS HLT
23 *
24 * @file AliHLTPHOSCaloClusterContainerStruct.h
25 * @author Oystein Djuvsland
26 * @date
27 * @brief Rec point container struct for PHOS HLT
28 */
29
7fc04b67 30#include "AliHLTCaloClusterDataStruct.h"
6a76e30e 31
32/**
33 * @struct AliHLTPHOSCaloClusterContainerStruct
34 * Calo cluster container struct for PHOS HLT
35 *
36 * @ingroup alihlt_phos
37 */
38struct AliHLTPHOSCaloClusterContainerStruct
39{
40
41 /** The PHOS module number */
42 UInt_t fPHOSModule;
43
44 /** The number of clusters */
45 UInt_t fNCaloClusters;
46
47 /** Array of rec points in the container */
7fc04b67 48 AliHLTCaloClusterDataStruct fCaloClusterArray[100];
6a76e30e 49
50};
51
52#endif