]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/CALO/AliHLTCaloProcessor.cxx
Coverity: Functions concerned was actually not use, and was deleted.
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloProcessor.cxx
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 const AliHLTComponentDataType AliHLTCaloProcessor::fgkInputDataTypes[]={kAliHLTVoidDataType,{0,"",""}}; //'zero' terminated array
21
22 AliHLTCaloProcessor::AliHLTCaloProcessor():AliHLTProcessor(), 
23                                            fCaloEventCount(0)
24 {
25   lineNumber[0] = '\0';
26 }
27
28
29 AliHLTCaloProcessor::~AliHLTCaloProcessor()
30 {
31
32 }
33
34
35 const char*
36 AliHLTCaloProcessor::IntToChar(int number)
37 {
38   // comment
39   snprintf(lineNumber, 256, "%d", number);
40   return lineNumber;
41 }
42