]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/SampleLib/AliHLTSampleComponent2.cxx
- adapted stand-alone bild system to the new libXMLIO dependency of libESD
[u/mrichter/AliRoot.git] / HLT / SampleLib / AliHLTSampleComponent2.cxx
1 // $Id$
2
3 /**************************************************************************
4  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  *                                                                        *
6  * Authors: Matthias Richter <Matthias.Richter@ift.uib.no>                *
7  *          Timm Steinbeck <timm@kip.uni-heidelberg.de>                   *
8  *          for The ALICE Off-line Project.                               *
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 /** @file   AliHLTSampleComponent2.cxx
20     @author Matthias Richter, Timm Steinbeck
21     @date   
22     @brief  Another sample processing component for the HLT. */
23
24 #if __GNUC__== 3
25 using namespace std;
26 #endif
27
28 #include "AliHLTSampleComponent2.h"
29
30 /**
31  * The global object used for automatic component registration, 
32  * @note DO NOT use this component for calculation!
33  */
34 AliHLTSampleComponent2 gAliHLTSampleComponent2;
35
36 ClassImp(AliHLTSampleComponent2)
37
38 const AliHLTComponentDataType AliHLTSampleComponent2::inputDataTypes[]={kAliHLTVoidDataType,
39                                                                         {0,"",""}}; //'zero' terminated array
40 const AliHLTComponentDataType AliHLTSampleComponent2::outputDataType=kAliHLTVoidDataType;
41
42 AliHLTSampleComponent2::AliHLTSampleComponent2()
43 {
44 }
45
46 AliHLTSampleComponent2::~AliHLTSampleComponent2()
47 {
48 }
49
50 int AliHLTSampleComponent2::DoInit( int argc, const char** argv ){
51   Logging(kHLTLogInfo, "HLT", "Sample", "Sample component2, DoInit");
52   return 0;
53 }
54
55 int AliHLTSampleComponent2::DoDeinit(){
56   Logging(kHLTLogInfo, "HLT", "Sample", "Sample component2, DoDeinit");
57   return 0;
58 }
59
60 int AliHLTSampleComponent2::DoEvent( const AliHLTComponentEventData& evtData, const AliHLTComponentBlockData* blocks, 
61                                       AliHLTComponentTriggerData& trigData, AliHLTUInt8_t* outputPtr, 
62                                       AliHLTUInt32_t& size, vector<AliHLTComponentBlockData>& outputBlocks ) {
63   Logging(kHLTLogInfo, "HLT", "Sample", "Sample component2, DoEvent");
64   return 0;
65 }