]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/SampleLib/AliHLTSampleComponent2.cxx
- check for AliRoot features/libs/files and corresponding conditional
[u/mrichter/AliRoot.git] / HLT / SampleLib / AliHLTSampleComponent2.cxx
CommitLineData
c5318542 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
b22e91eb 19/** @file AliHLTSampleComponent2.cxx
20 @author Matthias Richter, Timm Steinbeck
21 @date
22 @brief Another sample processing component for the HLT. */
c5318542 23
24#if __GNUC__== 3
25using namespace std;
26#endif
27
c5318542 28#include "AliHLTSampleComponent2.h"
29
b22e91eb 30/**
31 * The global object used for automatic component registration,
32 * @note DO NOT use this component for calculation!
33 */
c5318542 34AliHLTSampleComponent2 gAliHLTSampleComponent2;
35
36ClassImp(AliHLTSampleComponent2)
37
38const AliHLTComponent_DataType AliHLTSampleComponent2::inputDataTypes[]={{0,0}, {0,0}}; //'zero' terminated array
39const AliHLTComponent_DataType AliHLTSampleComponent2::outputDataType={0,0};
40
41AliHLTSampleComponent2::AliHLTSampleComponent2()
42{
43}
44
45AliHLTSampleComponent2::~AliHLTSampleComponent2()
46{
47}
48
49int AliHLTSampleComponent2::DoInit( int argc, const char** argv ){
50 Logging(kHLTLogInfo, "HLT", "Sample", "Sample component2, DoInit");
51 return 0;
52}
53
54int AliHLTSampleComponent2::DoDeinit(){
55 Logging(kHLTLogInfo, "HLT", "Sample", "Sample component2, DoDeinit");
56 return 0;
57}
58
71d7c760 59int AliHLTSampleComponent2::DoEvent( const AliHLTComponent_EventData& evtData, const AliHLTComponent_BlockData* blocks,
60 AliHLTComponent_TriggerData& trigData, AliHLTUInt8_t* outputPtr,
61 AliHLTUInt32_t& size, vector<AliHLTComponent_BlockData>& outputBlocks ) {
c5318542 62 Logging(kHLTLogInfo, "HLT", "Sample", "Sample component2, DoEvent");
63 return 0;
64}