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