]> git.uio.no Git - u/mrichter/AliRoot.git/blame - AD/ADrec/AliADRecoParam.cxx
Fine tuning of QA
[u/mrichter/AliRoot.git] / AD / ADrec / AliADRecoParam.cxx
CommitLineData
5e319bd5 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 **************************************************************************/
0c29ab3d 15
5e319bd5 16#include "AliLog.h"
17
18#include "AliADRecoParam.h"
19
20ClassImp(AliADRecoParam)
21
22//_____________________________________________________________________________
0c29ab3d 23AliADRecoParam::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),
e15d4621 38 fMaxResid(4.),
39 fNTdcTimeBins(2560),
40 fTdcTimeMin(20.),
41 fTdcTimeMax(180.),
08aeb243 42 fNTdcWidthBins(153),
e15d4621 43 fTdcWidthMin(2.343750),
08aeb243 44 fTdcWidthMax(121.875000),
e15d4621 45 fNChargeChannelBins(300),
46 fNChargeSideBins(500),
47 fNChargeCorrBins(150)
0c29ab3d 48
49{
50 //
51 // constructor
52 //
53 SetName("AD");
54 SetTitle("AD");
5e319bd5 55}
56
5e319bd5 57//_____________________________________________________________________________
58AliADRecoParam::~AliADRecoParam()
59{
0c29ab3d 60 //
61 // destructor
62 //
5e319bd5 63}