]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/EMCAL/AliHLTEMCALRawAnalyzerComponent.cxx
Bug fixes.
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALRawAnalyzerComponent.cxx
... / ...
CommitLineData
1/**************************************************************************
2 * This file is property of and copyright by the Experimental Nuclear *
3 * Physics Group, Dep. of Physics *
4 * University of Oslo, Norway, 2007 *
5 * *
6 * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project.*
7 * Contributors are mentioned in the code where appropriate. *
8 * Please report bugs to perthi@fys.uio.no *
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// Base class fro anlyzing EMCAL raww data
20// Further documentation found in base class
21// --------------
22// --------------
23// --------------
24// --------------
25
26
27
28#include "AliHLTEMCALRawAnalyzerComponent.h"
29#include "AliHLTEMCALMapper.h"
30#include "AliHLTEMCALDefinitions.h"
31
32
33
34AliHLTEMCALRawAnalyzerComponent::AliHLTEMCALRawAnalyzerComponent() : AliHLTCaloRawAnalyzerComponentv3("EMCAL")
35{
36 //fDebug = true;
37 fDebug = false;
38}
39
40
41AliHLTEMCALRawAnalyzerComponent::~AliHLTEMCALRawAnalyzerComponent()
42{
43
44}
45
46
47void
48AliHLTEMCALRawAnalyzerComponent::GetInputDataTypes( vector <AliHLTComponentDataType>& list)
49{
50 list.clear();
51 list.push_back( AliHLTEMCALDefinitions::fgkDDLRawDataType | kAliHLTDataOriginEMCAL );
52}
53
54
55AliHLTComponentDataType
56AliHLTEMCALRawAnalyzerComponent::GetOutputDataType()
57{
58 //comment
59 return AliHLTEMCALDefinitions::fgkChannelDataType;
60}
61
62
63void
64AliHLTEMCALRawAnalyzerComponent::InitMapping( const int specification )
65{
66 // Comment
67 if ( fMapperPtr == 0 )
68 {
69 fMapperPtr = new AliHLTEMCALMapper( specification );
70 }
71
72 if(fMapperPtr->GetIsInitializedMapping() == false )
73 {
74 HLTError("%d:%d, ERROR, mapping not initialized ", __FILE__, __LINE__ );
75 exit(-2);
76 }
77}
78
79