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