]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerKLevel.cxx
Script to make defauilt reco param
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerKLevel.cxx
1 // $Id$
2
3
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
19 #include "AliHLTPHOSRawAnalyzerKLevel.h"
20 #include <iostream>
21
22 using std::cout;
23 using std::endl;
24
25 ClassImp(AliHLTPHOSRawAnalyzerKLevel) 
26
27 //________________________________________________________________________________________________________
28 AliHLTPHOSRawAnalyzerKLevel::AliHLTPHOSRawAnalyzerKLevel(const AliHLTPHOSRawAnalyzerKLevel&):AliHLTPHOSRawAnalyzer(), fTKLevel(0)
29 {
30   //comment  
31 }
32
33
34 //________________________________________________________________________________________________________
35 AliHLTPHOSRawAnalyzerKLevel::AliHLTPHOSRawAnalyzerKLevel():AliHLTPHOSRawAnalyzer(), fTKLevel(0) 
36 {
37   //comment
38   cout <<"You cannot invoke the Fitter without arguments"<<endl;;
39 }
40
41
42 //________________________________________________________________________________________________________
43 AliHLTPHOSRawAnalyzerKLevel::~AliHLTPHOSRawAnalyzerKLevel()
44 {
45   //comment
46 } //end AliHLTPHOSRawAnalyzerKLevel
47
48
49
50 //________________________________________________________________________________________________________
51 void 
52 AliHLTPHOSRawAnalyzerKLevel::Evaluate(int /*start*/, int /*length*/)
53 {
54   //thats all 
55 } //end FitKLevel
56
57
58
59