]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - AD/ADrec/AliADRecoParam.cxx
Correlation and other histograms for raws
[u/mrichter/AliRoot.git] / AD / ADrec / AliADRecoParam.cxx
... / ...
CommitLineData
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
20ClassImp(AliADRecoParam)
21
22//_____________________________________________________________________________
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),
38 fMaxResid(4.)
39
40{
41 //
42 // constructor
43 //
44 SetName("AD");
45 SetTitle("AD");
46}
47
48//_____________________________________________________________________________
49AliADRecoParam::~AliADRecoParam()
50{
51 //
52 // destructor
53 //
54}