]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerLMS.cxx
setting keyword substitution
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerLMS.cxx
1 // $Id$
2
3 /**************************************************************************
4  * Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved.      *
5  *                                                                        *
6  * Author: Per Thomas Hille for the ALICE HLT Project.                    *
7  * Contributors are mentioned in the code where appropriate.              *
8  *                                                                        *
9  * Permission to use, copy, modify and distribute this software and its   *
10  * documentation strictly for non-commercial purposes is hereby granted   *
11  * without fee, provided that the above copyright notice appears in all   *
12  * copies and that both the copyright notice and this permission notice   *
13  * appear in the supporting documentation. The authors make no claims     *
14  * about the suitability of this software for any purpose. It is          *
15  * provided "as is" without express or implied warranty.                  *
16  **************************************************************************/
17
18
19 #include "AliHLTPHOSRawAnalyzerLMS.h"
20 #include <iostream>
21
22 using std::cout;
23 using std::endl;
24
25 ClassImp(AliHLTPHOSRawAnalyzerLMS) 
26
27 //_____________________________________________________________________________________________________
28 AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS(const AliHLTPHOSRawAnalyzerLMS&):AliHLTPHOSRawAnalyzer()
29 {
30
31 }
32
33
34 //_____________________________________________________________________________________________________
35 AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS():AliHLTPHOSRawAnalyzer() 
36 {
37   cout <<"You cannot invoke the Fitter without arguments"<<endl;;
38 }
39
40
41 /**
42 * Main constructor
43 * @param dtaPtr Data array for wich a subarray will be taken to perform the fit
44 * @param fs the sampling frequency in entities of MHz. Needed in order to calculate physical time
45 **/
46 //_____________________________________________________________________________________________________
47 AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS(double * /*dtaPtr*/, double fs):AliHLTPHOSRawAnalyzer() 
48 {
49   //  fFloatDataPtr = dtaPtr;  
50
51   fSampleFrequency = fs;
52 } //end   AliHLTPHOSRawAnalyzerLMS 
53
54
55 //_____________________________________________________________________________________________________
56 AliHLTPHOSRawAnalyzerLMS::~AliHLTPHOSRawAnalyzerLMS()
57 {
58
59 } //end AliHLTPHOSRawAnalyzerLMS
60
61
62 //_____________________________________________________________________________________________________
63 void 
64 AliHLTPHOSRawAnalyzerLMS::Evaluate(int /*start*/, int /*length*/)
65 {
66
67 } //end FitLMS
68
69
70
71
72