]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerComponent.cxx
Change of naming convention from Analyzer to RawAnalyser for classes that analyses...
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerComponent.cxx
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
21 AliHLTPHOSRawAnalyzerComponent::AliHLTPHOSRawAnalyzerComponent()
22 {
23
24
25
26 AliHLTPHOSRawAnalyzerComponent::~AliHLTPHOSRawAnalyzerComponent()
27 {
28
29 }
30
31
32 AliHLTPHOSRawAnalyzerComponent::AliHLTPHOSRawAnalyzerComponent(const AliHLTPHOSRawAnalyzerComponent & ) : AliHLTProcessor()
33 {
34
35 }
36
37 int 
38 AliHLTPHOSRawAnalyzerComponent::Deinit()
39 {
40   return 0;
41 }
42
43 int 
44 AliHLTPHOSRawAnalyzerComponent::DoDeinit()
45 {
46   return 0;
47 }
48
49 const char* 
50 AliHLTPHOSRawAnalyzerComponent::GetComponentID()
51 {
52   return 0;
53 }
54
55 void
56 AliHLTPHOSRawAnalyzerComponent::GetInputDataTypes(std::vector<AliHLTComponentDataType, std::allocator<AliHLTComponentDataType> >&)
57 {
58
59 }
60
61 AliHLTComponentDataType 
62 AliHLTPHOSRawAnalyzerComponent::GetOutputDataType()
63 {
64   AliHLTComponentDataType tmp;
65   return tmp;
66 }
67
68 void
69 AliHLTPHOSRawAnalyzerComponent::GetOutputDataSize(long unsigned int&, double&)
70 {
71
72 }
73
74 void 
75 AliHLTPHOSRawAnalyzerComponent::GetOutputDataSize(long  int&, double&)
76 {
77
78 }
79
80 AliHLTComponent* 
81 AliHLTPHOSRawAnalyzerComponent::Spawn()
82 {
83   return 0;
84 }
85
86 int 
87 AliHLTPHOSRawAnalyzerComponent::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 }