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