Change of naming convention from Analyzer to RawAnalyser for classes that analyses...
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerComponent.cxx
CommitLineData
cbab66dd 1/**************************************************************************
2 * Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: Per Thomas Hille for the ALICE HLT Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16#include "AliHLTPHOSRawAnalyzerComponent.h"
17#include <iostream>
18
19//ClassImp(AliHLTPHOSRawAnalyzerComponent)
20
21AliHLTPHOSRawAnalyzerComponent::AliHLTPHOSRawAnalyzerComponent()
22{
23
24}
25
26AliHLTPHOSRawAnalyzerComponent::~AliHLTPHOSRawAnalyzerComponent()
27{
28
29}
30
31
32AliHLTPHOSRawAnalyzerComponent::AliHLTPHOSRawAnalyzerComponent(const AliHLTPHOSRawAnalyzerComponent & ) : AliHLTProcessor()
33{
34
35}
36
37int
38AliHLTPHOSRawAnalyzerComponent::Deinit()
39{
40 return 0;
41}
42
43int
44AliHLTPHOSRawAnalyzerComponent::DoDeinit()
45{
46 return 0;
47}
48
49const char*
50AliHLTPHOSRawAnalyzerComponent::GetComponentID()
51{
52 return 0;
53}
54
55void
56AliHLTPHOSRawAnalyzerComponent::GetInputDataTypes(std::vector<AliHLTComponentDataType, std::allocator<AliHLTComponentDataType> >&)
57{
58
59}
60
61AliHLTComponentDataType
62AliHLTPHOSRawAnalyzerComponent::GetOutputDataType()
63{
64 AliHLTComponentDataType tmp;
65 return tmp;
66}
67
68void
69AliHLTPHOSRawAnalyzerComponent::GetOutputDataSize(long unsigned int&, double&)
70{
71
72}
73
74void
75AliHLTPHOSRawAnalyzerComponent::GetOutputDataSize(long int&, double&)
76{
77
78}
79
80AliHLTComponent*
81AliHLTPHOSRawAnalyzerComponent::Spawn()
82{
83 return 0;
84}
85
86int
87AliHLTPHOSRawAnalyzerComponent::DoEvent(const AliHLTComponentEventData&, const AliHLTComponentBlockData*, AliHLTComponentTriggerData&, AliHLTUInt8_t*, AliHLTUInt32_t&, std::vector<AliHLTComponentBlockData, std::allocator<AliHLTComponentBlockData> >&)
88{
89 printf("\nPHOSHLT DoEvent, not yet implemented\n");
90 return 0;
91}