Line data Source code
1 : // $Id$
2 :
3 : /**************************************************************************
4 : * Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
5 : * *
6 : * Author: Per Thomas Hille for the ALICE HLT Project. *
7 : * Contributors are mentioned in the code where appropriate. *
8 : * *
9 : * Permission to use, copy, modify and distribute this software and its *
10 : * documentation strictly for non-commercial purposes is hereby granted *
11 : * without fee, provided that the above copyright notice appears in all *
12 : * copies and that both the copyright notice and this permission notice *
13 : * appear in the supporting documentation. The authors make no claims *
14 : * about the suitability of this software for any purpose. It is *
15 : * provided "as is" without express or implied warranty. *
16 : **************************************************************************/
17 :
18 : #include "AliHLTPHOSRawAnalyzer.h"
19 :
20 :
21 0 : AliHLTPHOSRawAnalyzer:: AliHLTPHOSRawAnalyzer(): fDoubleDataPtr(0),
22 0 : fShortDataPtr(0),
23 0 : fSampleFrequency(10),
24 0 : fDTofGuess(-1),
25 0 : fDAmplGuess(-1),
26 0 : fTau(2),
27 0 : fDTof(99999),
28 0 : fDAmpl(99999),
29 0 : fStartIndex(0)
30 0 : {
31 :
32 0 : }
33 :
34 :
35 : AliHLTPHOSRawAnalyzer::~AliHLTPHOSRawAnalyzer()
36 0 : {
37 :
38 0 : }
39 :
|