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