]> git.uio.no Git - u/mrichter/AliRoot.git/blob - AD/ADrec/AliADRecoParam.cxx
Update master to aliroot
[u/mrichter/AliRoot.git] / AD / ADrec / AliADRecoParam.cxx
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 ClassImp(AliADRecoParam)
21
22 //_____________________________________________________________________________
23 AliADRecoParam::AliADRecoParam() : AliDetectorRecoParam(),
24   fNSigmaPed(2.0),
25   fStartClock(8),
26   fEndClock(12),
27   fNPreClocks(2),
28   fNPostClocks(1),
29   fAdcThresHold(0.0),
30   fTimeWindowBBALow(-9.5),
31   fTimeWindowBBAUp(22.5),
32   fTimeWindowBGALow(-2.5),
33   fTimeWindowBGAUp(5.0),
34   fTimeWindowBBCLow(-2.5),
35   fTimeWindowBBCUp(22.5),
36   fTimeWindowBGCLow(-2.5),
37   fTimeWindowBGCUp(2.5),
38   fMaxResid(4.),
39   fNTdcTimeBins(2560),
40   fTdcTimeMin(20.),
41   fTdcTimeMax(180.),
42   fNTdcWidthBins(153),
43   fTdcWidthMin(2.343750),
44   fTdcWidthMax(121.875000),
45   fNChargeChannelBins(300),
46   fNChargeSideBins(500),
47   fNChargeCorrBins(150)         
48
49 {
50   //
51   // constructor
52   //
53   SetName("AD");
54   SetTitle("AD");
55 }
56
57 //_____________________________________________________________________________
58 AliADRecoParam::~AliADRecoParam() 
59 {
60   //
61   // destructor
62   //  
63 }