]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRawAnalyzerCrudeComponent.cxx
Coverity 17737 solved by non-implemented private copy constructor and assignment...
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerCrudeComponent.cxx
CommitLineData
1b41ab20 1// $Id$
2
ee7849e6 3
cbab66dd 4/**************************************************************************
5 * Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
6 * *
7 * Author: Per Thomas Hille for the ALICE HLT Project. *
8 * Contributors are mentioned in the code where appropriate. *
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
d504c864 19
cbab66dd 20#include "AliHLTPHOSRawAnalyzerCrudeComponent.h"
cbab66dd 21
ee7849e6 22AliHLTPHOSRawAnalyzerCrudeComponent gAliHLTPHOSRawAnalyzerCrudeComponent;
cbab66dd 23
d504c864 24//___________________________________________________________________________
92d9f317 25AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent() : AliHLTPHOSRawAnalyzerComponentv3(kCrude)
cbab66dd 26{
92d9f317 27
cbab66dd 28}
29
92d9f317 30
d504c864 31//___________________________________________________________________________
cbab66dd 32AliHLTPHOSRawAnalyzerCrudeComponent::~AliHLTPHOSRawAnalyzerCrudeComponent()
33{
92d9f317 34
cbab66dd 35}
36
92d9f317 37
d504c864 38//___________________________________________________________________________
92d9f317 39AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent(const AliHLTPHOSRawAnalyzerCrudeComponent & ):AliHLTPHOSRawAnalyzerComponentv3(kCrude)
cbab66dd 40{
41
42}
43
92d9f317 44
d949e02e 45int
46AliHLTPHOSRawAnalyzerCrudeComponent::Deinit()
47{
d949e02e 48 Logging(kHLTLogInfo, "HLT", "PHOS", ",AliHLTPHOSRawAnalyzerCrudeComponent Deinit");
49 return 0;
50}
51
92d9f317 52
d504c864 53//___________________________________________________________________________
ee7849e6 54const char*
55AliHLTPHOSRawAnalyzerCrudeComponent::GetComponentID()
56{
57 return "PhosRawCrude";
58}
59
92d9f317 60
d504c864 61//___________________________________________________________________________
ee7849e6 62AliHLTComponent*
63AliHLTPHOSRawAnalyzerCrudeComponent::Spawn()
64{
65 return new AliHLTPHOSRawAnalyzerCrudeComponent;
66}