598f649eddb55af57dad8527ddcfa1544bd06940
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALRawAnalyzerComponent.cxx
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
20 #include "AliHLTEMCALRawAnalyzerComponent.h"
21 #include "AliHLTEMCALMapper.h"
22 #include "AliHLTEMCALDefinitions.h"
23
24
25 AliHLTEMCALRawAnalyzerComponent::AliHLTEMCALRawAnalyzerComponent() : 
26 AliHLTCaloRawAnalyzerComponentv3("EMCAL")
27 {
28   
29
30 }
31
32
33 AliHLTEMCALRawAnalyzerComponent::~AliHLTEMCALRawAnalyzerComponent()
34 {
35
36 }
37
38
39
40 void 
41 AliHLTEMCALRawAnalyzerComponent::GetInputDataTypes( vector <AliHLTComponentDataType>& list)
42 {
43   list.clear();
44   list.push_back( AliHLTEMCALDefinitions::fgkDDLRawDataType   | kAliHLTDataOriginEMCAL );
45 }
46
47
48 bool 
49 AliHLTEMCALRawAnalyzerComponent::CheckInputDataType(const AliHLTComponentDataType &datatype)
50 {
51   if ( datatype  == AliHLTEMCALDefinitions::fgkDDLRawDataType  )
52      {
53        return true;
54      }
55    else
56      {
57        return false;
58      }
59 }
60
61
62 void 
63 AliHLTEMCALRawAnalyzerComponent::InitMapping( const int specification )
64 {
65
66   if ( fMapperPtr == 0 )
67     {
68       fMapperPtr =  new   AliHLTEMCALMapper( specification );
69     }
70
71   if(fMapperPtr->GetIsInitializedMapping() == false )
72     {
73       HLTError("%d:%d, ERROR, mapping not initialized ", __FILE__, __LINE__ );
74       exit(-2);
75     }
76 }