]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/Cal/AliTRDCalGlobals.cxx
Remove t0 again from global calibration
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalGlobals.cxx
CommitLineData
7754cd1f 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/* $Id$ */
17
18///////////////////////////////////////////////////////////////////////////////
19// //
b43a3e17 20// TRD calibration class for global TRD parameters //
7754cd1f 21// //
22///////////////////////////////////////////////////////////////////////////////
23
24#include "AliTRDCalGlobals.h"
25
26ClassImp(AliTRDCalGlobals)
27
28//_____________________________________________________________________________
2745a409 29AliTRDCalGlobals::AliTRDCalGlobals()
30 :TNamed()
2745a409 31 ,fNumberOfTimeBins(0)
4d011d8f 32 ,fTailCancelationTau1(0)
33 ,fTailCancelationTau2(0)
34 ,fTailCancelationAmp(0)
35 ,fPedestal(0)
d4c6453d 36 ,fADCClockphase(0)
8d786fb8 37 ,fConfigID(0)
38 ,fGainTableID(0)
39 ,fPretriggerConf(0)
7754cd1f 40{
41 //
42 // AliTRDCalGlobals default constructor
43 //
2745a409 44
7754cd1f 45}
46
47//_____________________________________________________________________________
48AliTRDCalGlobals::AliTRDCalGlobals(const Text_t *name, const Text_t *title)
2745a409 49 :TNamed(name,title)
2745a409 50 ,fNumberOfTimeBins(0)
4d011d8f 51 ,fTailCancelationTau1(0)
52 ,fTailCancelationTau2(0)
53 ,fTailCancelationAmp(0)
54 ,fPedestal(0)
d4c6453d 55 ,fADCClockphase(0)
8d786fb8 56 ,fConfigID(0)
57 ,fGainTableID(0)
58 ,fPretriggerConf(0)
7754cd1f 59{
60 //
61 // AliTRDCalGlobals constructor
62 //
63
7754cd1f 64}