]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerCrude.cxx
Coding conventions & doccumentation
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerCrude.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 "AliHLTPHOSRawAnalyzerCrude.h"
18 #include <iostream>
19
20 using std::cout;
21 using std::endl;
22
23 ClassImp(AliHLTPHOSRawAnalyzerCrude) 
24
25
26 //____________________________________________________________________________
27 AliHLTPHOSRawAnalyzerCrude::AliHLTPHOSRawAnalyzerCrude(const AliHLTPHOSRawAnalyzerCrude&):AliHLTPHOSRawAnalyzer()
28 {
29
30 }
31
32 /**
33  * The AliHLTPHOSPeakfinder class is the class for extracting the basic signal parameters
34  * "timing" and "energy" from the PHOS raw data. Physical data will for a given readout channel be
35  * a sequense of ADC digitized 10 bit integer values, however for performance reasons all values used in
36  * calculation is of type double.
37  **/
38 //____________________________________________________________________________
39 AliHLTPHOSRawAnalyzerCrude::AliHLTPHOSRawAnalyzerCrude():AliHLTPHOSRawAnalyzer() 
40 {
41
42 }
43
44
45 //____________________________________________________________________________
46 AliHLTPHOSRawAnalyzerCrude::~AliHLTPHOSRawAnalyzerCrude()
47 {
48
49 } //end AliHLTPHOSRawAnalyzerCrude
50
51
52
53 /**
54 * Extraction of timing and energy using Crude estimate.
55 * The. The parameters "start" and "length" defines a sub array  of the data array
56 * that will be used for the the fit. If start+length must not exeed the total length
57 * of the Data array. "start" must be chosen as close as possible to t0.
58 * The baseline must also be subtracted.
59 * The length of "tVector" and "aVector" mus be equal to length.
60 * "index + length" must not exeed the length of the data array set in the constructor.
61 * @param start the start index of the subarray of the data array. 
62 * @param length the number of samples to use starting from index 
63 **/
64 //____________________________________________________________________________
65 void 
66 AliHLTPHOSRawAnalyzerCrude::Evaluate(int start, int length)
67 {
68   double tmpAmplitudeMax =0; 
69   double tmpTime = 0;
70
71   for(int i=start; i<length; i++)
72     {
73       if(fFloatDataPtr[i] >  tmpAmplitudeMax)
74         {
75           tmpAmplitudeMax = fFloatDataPtr[i];
76           tmpTime = i;               
77         }
78     }
79         
80   fDAmpl = tmpAmplitudeMax;
81   fDTof =  tmpTime;
82  
83   //thats all 
84 } //end Crude
85
86