]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EMCAL/AliHLTEMCALRawAnalyzerComponent.cxx
Factorization of the different raw fitting algorithms in EMCAL (Per Thomas)
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALRawAnalyzerComponent.cxx
CommitLineData
88b2ce82 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
88938cd8 19// Base class fro anlyzing EMCAL raww data
20// Further documentation found in base class
21// --------------
22// --------------
23// --------------
24// --------------
25
88b2ce82 26
4fad3687 27
88b2ce82 28#include "AliHLTEMCALRawAnalyzerComponent.h"
29#include "AliHLTEMCALMapper.h"
30#include "AliHLTEMCALDefinitions.h"
fb4907a2 31
92d9f317 32#include "AliCaloConstants.h"
1637625c 33
92d9f317 34using namespace Algo;
1e46316a 35
92d9f317 36AliHLTEMCALRawAnalyzerComponent::AliHLTEMCALRawAnalyzerComponent( fitAlgorithm algo ) : AliHLTCaloRawAnalyzerComponentv3("EMCAL", algo)
88b2ce82 37{
616b827d 38 //fDebug = true;
39 fDebug = false;
88b2ce82 40}
41
42
43AliHLTEMCALRawAnalyzerComponent::~AliHLTEMCALRawAnalyzerComponent()
44{
45
46}
47
48
88b2ce82 49void
50AliHLTEMCALRawAnalyzerComponent::GetInputDataTypes( vector <AliHLTComponentDataType>& list)
51{
52 list.clear();
53 list.push_back( AliHLTEMCALDefinitions::fgkDDLRawDataType | kAliHLTDataOriginEMCAL );
54}
55
56
c375e15d 57AliHLTComponentDataType
58AliHLTEMCALRawAnalyzerComponent::GetOutputDataType()
59{
60 //comment
61 return AliHLTEMCALDefinitions::fgkChannelDataType;
62}
63
64
88b2ce82 65void
4d6be4cd 66AliHLTEMCALRawAnalyzerComponent::InitMapping( const int specification )
88b2ce82 67{
1e46316a 68 // Comment
4d6be4cd 69 if ( fMapperPtr == 0 )
70 {
71 fMapperPtr = new AliHLTEMCALMapper( specification );
72 }
73
74 if(fMapperPtr->GetIsInitializedMapping() == false )
75 {
1e46316a 76 HLTError("%d:%d, ERROR, mapping not initialized ", __FILE__, __LINE__ );
4d6be4cd 77 exit(-2);
78 }
88b2ce82 79}
c375e15d 80
1637625c 81