Line data Source code
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"
19 :
20 6 : const AliHLTComponentDataType AliHLTCaloProcessor::fgkInputDataTypes[]={kAliHLTVoidDataType,{0,"",""}}; //'zero' terminated array
21 :
22 54 : AliHLTCaloProcessor::AliHLTCaloProcessor():AliHLTProcessor(),
23 54 : fCaloEventCount(0)
24 162 : {
25 54 : lineNumber[0] = '\0';
26 54 : }
27 :
28 :
29 : AliHLTCaloProcessor::~AliHLTCaloProcessor()
30 0 : {
31 :
32 102 : }
33 :
34 :
35 : const char*
36 : AliHLTCaloProcessor::IntToChar(int number)
37 : {
38 : // comment
39 0 : snprintf(lineNumber, 256, "%d", number);
40 0 : return lineNumber;
41 : }
42 :
|