]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSPedestalSSD.cxx
Compilation warning removed
[u/mrichter/AliRoot.git] / ITS / AliITSPedestalSSD.cxx
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 ClassImp(AliITSPedestalSSD)
27
28 //______________________________________________________________________
29 AliITSPedestalSSD::AliITSPedestalSSD():
30 fMod(0),
31 fPedP(0),
32 fPedN(0) {
33     // Default Constructor
34 }
35
36 //______________________________________________________________________
37 AliITSPedestalSSD::AliITSPedestalSSD(const AliITSPedestalSSD &source): TObject(source),
38 fMod(source.fMod),
39 fPedP(source.fPedP),
40 fPedN(source.fPedN) {
41     // copy Constructor
42 }
43 //______________________________________________________________________
44 AliITSPedestalSSD::~AliITSPedestalSSD(){
45     // destructor
46
47 }
48
49 //______________________________________________________________________
50 AliITSPedestalSSD& AliITSPedestalSSD::operator=(const AliITSPedestalSSD &source) {
51  // ass. op.
52     if (this == &source)
53       return *this;
54     fMod = source.fMod;
55     fPedP =  source.fMod;
56     fPedN =  source.fMod;
57     return *this;
58 }