]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CALO/AliHLTCaloProcessor.cxx
RWGCF converted to native cmake
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloProcessor.cxx
CommitLineData
c375e15d 1// $Id: AliHLTCaloProcessor.cxx 35966 2009-10-26 12:47:19Z odjuvsla $
2
3/**************************************************************************
4 * This file is property of and copyright by the ALICE HLT Project *
5 * All rights reserved. *
6 * *
7 * Primary Author: Per Thomas Hille <perthi@fys.uio.no> *
8 * *
9 * Permission to use, copy, modify and distribute this software and its *
10 * documentation strictly for non-commercial purposes is hereby granted *
11 * without fee, provided that the above copyright notice appears in all *
12 * copies and that both the copyright notice and this permission notice *
13 * appear in the supporting documentation. The authors make no claims *
14 * about the suitability of this software for any purpose. It is *
15 * provided "as is" without express or implied warranty. *
16 **************************************************************************/
17
18#include "AliHLTCaloProcessor.h"
c375e15d 19
20const AliHLTComponentDataType AliHLTCaloProcessor::fgkInputDataTypes[]={kAliHLTVoidDataType,{0,"",""}}; //'zero' terminated array
21
c375e15d 22AliHLTCaloProcessor::AliHLTCaloProcessor():AliHLTProcessor(),
304d6835 23 fCaloEventCount(0)
c375e15d 24{
fe4e0365 25 lineNumber[0] = '\0';
c375e15d 26}
27
28
c375e15d 29AliHLTCaloProcessor::~AliHLTCaloProcessor()
30{
31
32}
33
c375e15d 34
35const char*
36AliHLTCaloProcessor::IntToChar(int number)
37{
304d6835 38 // comment
39 snprintf(lineNumber, 256, "%d", number);
c375e15d 40 return lineNumber;
41}
42