]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRawAnalyzerComponentv3.cxx
Update From Debojit
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerComponentv3.cxx
CommitLineData
ac745f08 1// $Id$
87434909 2/**************************************************************************
3 * This file is property of and copyright by the ALICE HLT Project *
4 * All rights reserved. *
5 * *
6 * Primary Authors: Per Thomas Hille, Oystein Djuvsland *
7 * *
8 * Permission to use, copy, modify and distribute this software and its *
9 * documentation strictly for non-commercial purposes is hereby granted *
10 * without fee, provided that the above copyright notice appears in all *
11 * copies and that both the copyright notice and this permission notice *
12 * appear in the supporting documentation. The authors make no claims *
13 * about the suitability of this software for any purpose. It is *
14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16
87434909 17#include "AliHLTPHOSRawAnalyzerComponentv3.h"
44175a17 18#include "AliHLTPHOSDefinitions.h"
44175a17 19#include "AliHLTPHOSMapper.h"
87434909 20
4f4b7ba4 21
92d9f317 22AliHLTPHOSRawAnalyzerComponentv3::AliHLTPHOSRawAnalyzerComponentv3( fitAlgorithm algo ) : AliHLTCaloRawAnalyzerComponentv3("PHOS", algo)
87434909 23{
baf0b40f 24 // See header file for class documentation
dc1902d2 25// InitMapping(0x1); //using 0x1 to avoid error message
87434909 26}
27
f9baa094 28
87434909 29AliHLTPHOSRawAnalyzerComponentv3::~AliHLTPHOSRawAnalyzerComponentv3()
30{
31 //comment
cb12f62a 32}
33
34
87434909 35void
36AliHLTPHOSRawAnalyzerComponentv3::GetInputDataTypes( vector<AliHLTComponentDataType>& list)
37{
38 //comment
39 list.clear();
44175a17 40 list.push_back( AliHLTPHOSDefinitions::fgkDDLPackedRawDataType);
87434909 41}
42
f9baa094 43
0a21baa3 44AliHLTComponentDataType
45AliHLTPHOSRawAnalyzerComponentv3::GetOutputDataType()
46{
47 //comment
48 return AliHLTPHOSDefinitions::fgkChannelDataType;
49}
50
cb12f62a 51
44175a17 52void AliHLTPHOSRawAnalyzerComponentv3::InitMapping ( const int specification )
cb12f62a 53{
44175a17 54 // See header file for class documentation
f137c3c5 55 fMapperPtr->InitDDLSpecificationMapping();
56 fMapperPtr->InitAltroMapping(specification);
cb12f62a 57}
58
dc1902d2 59int AliHLTPHOSRawAnalyzerComponentv3::DoInit(int argc, const char** argv)
60{
61 fMapperPtr = new AliHLTPHOSMapper;
62 return AliHLTCaloRawAnalyzerComponentv3::DoInit(argc, argv);
63}