Line data Source code
1 : /**************************************************************************
2 : * Copyright(c) 2007-9, 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 : #include "AliITSPedestalSSD.h"
19 :
20 : //////////////////////////////////////////////////////
21 : // Author: Enrico Fragiacomo
22 : // Date: 12/12/2007
23 : // //
24 : //////////////////////////////////////////////////////
25 :
26 118 : ClassImp(AliITSPedestalSSD)
27 :
28 : //______________________________________________________________________
29 0 : AliITSPedestalSSD::AliITSPedestalSSD():
30 0 : fMod(0),
31 0 : fPedP(0),
32 0 : fPedN(0) {
33 : // Default Constructor
34 0 : }
35 :
36 : //______________________________________________________________________
37 0 : AliITSPedestalSSD::AliITSPedestalSSD(const AliITSPedestalSSD &source): TObject(source),
38 0 : fMod(source.fMod),
39 0 : fPedP(source.fPedP),
40 0 : fPedN(source.fPedN) {
41 : // copy Constructor
42 0 : }
43 : //______________________________________________________________________
44 0 : AliITSPedestalSSD::~AliITSPedestalSSD(){
45 : // destructor
46 :
47 0 : }
48 :
49 : //______________________________________________________________________
50 : AliITSPedestalSSD& AliITSPedestalSSD::operator=(const AliITSPedestalSSD &source) {
51 : // ass. op.
52 0 : if (this == &source)
53 0 : return *this;
54 0 : fMod = source.fMod;
55 0 : fPedP = source.fMod;
56 0 : fPedN = source.fMod;
57 0 : return *this;
58 0 : }
|