]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRawAnalyzerLMS.cxx
Changed the data format to pass to the Make methods
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerLMS.cxx
CommitLineData
cbab66dd 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
2f475e8c 17#include "AliHLTPHOSRawAnalyzerLMS.h"
cbab66dd 18#include <iostream>
19
20using std::cout;
21using std::endl;
22
2f475e8c 23ClassImp(AliHLTPHOSRawAnalyzerLMS)
cbab66dd 24
d504c864 25//_____________________________________________________________________________________________________
f2a31adc 26AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS(const AliHLTPHOSRawAnalyzerLMS&):AliHLTPHOSRawAnalyzer()
cbab66dd 27{
28
29}
30
31
d504c864 32//_____________________________________________________________________________________________________
f2a31adc 33AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS():AliHLTPHOSRawAnalyzer()
cbab66dd 34{
35 cout <<"You cannot invoke the Fitter without arguments"<<endl;;
36}
37
38
39/**
40* Main constructor
d504c864 41* @param dtaPtr Data array for wich a subarray will be taken to perform the fit
cbab66dd 42* @param fs the sampling frequency in entities of MHz. Needed in order to calculate physical time
43**/
d504c864 44//_____________________________________________________________________________________________________
f2a31adc 45AliHLTPHOSRawAnalyzerLMS::AliHLTPHOSRawAnalyzerLMS(double *dtaPtr, double fs):AliHLTPHOSRawAnalyzer()
cbab66dd 46{
e086ee30 47 // fFloatDataPtr = dtaPtr;
48
cbab66dd 49 fSampleFrequency = fs;
2f475e8c 50} //end AliHLTPHOSRawAnalyzerLMS
cbab66dd 51
52
d504c864 53//_____________________________________________________________________________________________________
2f475e8c 54AliHLTPHOSRawAnalyzerLMS::~AliHLTPHOSRawAnalyzerLMS()
cbab66dd 55{
56
2f475e8c 57} //end AliHLTPHOSRawAnalyzerLMS
cbab66dd 58
59
d504c864 60//_____________________________________________________________________________________________________
cbab66dd 61void
2f475e8c 62AliHLTPHOSRawAnalyzerLMS::Evaluate(int start, int length)
cbab66dd 63{
cbab66dd 64
cbab66dd 65} //end FitLMS
66
67
68
69
70