Line data Source code
1 : /**************************************************************************
2 : * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 : * *
4 : * Author: The ALICE Off-line 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 : #include "AliLog.h"
17 :
18 : #include "AliADRecoParam.h"
19 :
20 16 : ClassImp(AliADRecoParam)
21 :
22 : //_____________________________________________________________________________
23 0 : AliADRecoParam::AliADRecoParam() : AliDetectorRecoParam(),
24 0 : fNSigmaPed(2.0),
25 0 : fStartClock(8),
26 0 : fEndClock(12),
27 0 : fNPreClocks(1),
28 0 : fNPostClocks(2),
29 0 : fTailBegin(16),
30 0 : fTailEnd(20),
31 0 : fAdcThresHold(1.0),
32 0 : fTimeWindowBBALow(-9.5),
33 0 : fTimeWindowBBAUp(22.5),
34 0 : fTimeWindowBGALow(-2.5),
35 0 : fTimeWindowBGAUp(5.0),
36 0 : fTimeWindowBBCLow(-2.5),
37 0 : fTimeWindowBBCUp(22.5),
38 0 : fTimeWindowBGCLow(-2.5),
39 0 : fTimeWindowBGCUp(2.5),
40 0 : fMaxResid(5.0),
41 0 : fResidRise(0.02)
42 :
43 0 : {
44 : //
45 : // constructor
46 : //
47 0 : SetName("AD");
48 0 : SetTitle("AD");
49 0 : }
50 :
51 : //_____________________________________________________________________________
52 : AliADRecoParam::~AliADRecoParam()
53 0 : {
54 : //
55 : // destructor
56 : //
57 0 : }
|