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 | |
d504c864 |
16 | |
cbab66dd |
17 | #include "AliHLTPHOSRawAnalyzerCrude.h" |
9c9d15d6 |
18 | //#include <iostream> |
cbab66dd |
19 | |
cbab66dd |
20 | |
9c9d15d6 |
21 | //using std::cout; |
22 | //using std::endl; |
cbab66dd |
23 | |
9c9d15d6 |
24 | //ClassImp(AliHLTPHOSRawAnalyzerCrude) |
cbab66dd |
25 | |
cbab66dd |
26 | |
9c9d15d6 |
27 | //AliHLTPHOSRawAnalyzerCrude::AliHLTPHOSRawAnalyzerCrude(const AliHLTPHOSRawAnalyzerCrude&):AliHLTPHOSRawAnalyzer() |
28 | //{ |
29 | // |
30 | //} |
cbab66dd |
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 | **/ |
d504c864 |
38 | //____________________________________________________________________________ |
cbab66dd |
39 | AliHLTPHOSRawAnalyzerCrude::AliHLTPHOSRawAnalyzerCrude():AliHLTPHOSRawAnalyzer() |
40 | { |
05be0766 |
41 | |
cbab66dd |
42 | } |
43 | |
44 | |
d504c864 |
45 | //____________________________________________________________________________ |
cbab66dd |
46 | AliHLTPHOSRawAnalyzerCrude::~AliHLTPHOSRawAnalyzerCrude() |
47 | { |
48 | |
49 | } //end AliHLTPHOSRawAnalyzerCrude |
50 | |
51 | |
52 | |
9c9d15d6 |
53 | |
cbab66dd |
54 | /** |
ee7849e6 |
55 | * Extraction of timing and energy using Crude estimate. |
cbab66dd |
56 | * The. The parameters "start" and "length" defines a sub array of the data array |
57 | * that will be used for the the fit. If start+length must not exeed the total length |
58 | * of the Data array. "start" must be chosen as close as possible to t0. |
59 | * The baseline must also be subtracted. |
60 | * The length of "tVector" and "aVector" mus be equal to length. |
61 | * "index + length" must not exeed the length of the data array set in the constructor. |
62 | * @param start the start index of the subarray of the data array. |
63 | * @param length the number of samples to use starting from index |
cbab66dd |
64 | **/ |
d504c864 |
65 | //____________________________________________________________________________ |
cbab66dd |
66 | void |
67 | AliHLTPHOSRawAnalyzerCrude::Evaluate(int start, int length) |
68 | { |
cbab66dd |
69 | double tmpAmplitudeMax =0; |
70 | double tmpTime = 0; |
71 | |
72 | for(int i=start; i<length; i++) |
73 | { |
e086ee30 |
74 | // if(fFloatDataPtr[i] > tmpAmplitudeMax) |
75 | // { |
76 | // tmpAmplitudeMax = fFloatDataPtr[i]; |
77 | // tmpTime = i; |
78 | // } |
79 | |
dbd79fad |
80 | if(fIntDataPtr[i] > tmpAmplitudeMax && i > 5) |
cbab66dd |
81 | { |
e086ee30 |
82 | tmpAmplitudeMax = fIntDataPtr[i]; |
cbab66dd |
83 | tmpTime = i; |
84 | } |
e086ee30 |
85 | |
cbab66dd |
86 | } |
87 | |
88 | fDAmpl = tmpAmplitudeMax; |
89 | fDTof = tmpTime; |
92e78811 |
90 | |
cbab66dd |
91 | //thats all |
92 | } //end Crude |
93 | |
94 | |