]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSPedestalSSD.cxx
Switching to a new function name
[u/mrichter/AliRoot.git] / ITS / AliITSPedestalSSD.cxx
CommitLineData
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 26ClassImp(AliITSPedestalSSD)
88128115 27
a5edfa6f 28//______________________________________________________________________
88128115 29AliITSPedestalSSD::AliITSPedestalSSD():
30fMod(0),
31fPedP(0),
32fPedN(0) {
a5edfa6f 33 // Default Constructor
88128115 34}
a5edfa6f 35
36//______________________________________________________________________
88128115 37AliITSPedestalSSD::AliITSPedestalSSD(const AliITSPedestalSSD &source): TObject(source),
38fMod(source.fMod),
39fPedP(source.fPedP),
40fPedN(source.fPedN) {
a5edfa6f 41 // copy Constructor
42}
43//______________________________________________________________________
44AliITSPedestalSSD::~AliITSPedestalSSD(){
45 // destructor
46
47}
48
49//______________________________________________________________________
50AliITSPedestalSSD& 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}