]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/PHOS/AliHLTPHOSRawAnalyzerLMS.cxx
Changed the data format to pass to the Make methods
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerLMS.cxx
... / ...
CommitLineData
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
20using std::cout;
21using std::endl;
22
23ClassImp(AliHLTPHOSRawAnalyzerLMS)
24
25//_____________________________________________________________________________________________________
26AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS(const AliHLTPHOSRawAnalyzerLMS&):AliHLTPHOSRawAnalyzer()
27{
28
29}
30
31
32//_____________________________________________________________________________________________________
33AliHLTPHOSRawAnalyzerLMS::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//_____________________________________________________________________________________________________
45AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS(double *dtaPtr, double fs):AliHLTPHOSRawAnalyzer()
46{
47 // fFloatDataPtr = dtaPtr;
48
49 fSampleFrequency = fs;
50} //end AliHLTPHOSRawAnalyzerLMS
51
52
53//_____________________________________________________________________________________________________
54AliHLTPHOSRawAnalyzerLMS::~AliHLTPHOSRawAnalyzerLMS()
55{
56
57} //end AliHLTPHOSRawAnalyzerLMS
58
59
60//_____________________________________________________________________________________________________
61void
62AliHLTPHOSRawAnalyzerLMS::Evaluate(int start, int length)
63{
64
65} //end FitLMS
66
67
68
69
70