]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCDigit.cxx
Small bug corrected
[u/mrichter/AliRoot.git] / ZDC / AliZDCDigit.cxx
CommitLineData
6cb3ec36 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
8a2624cc 16//**********************************************************************
6cb3ec36 17//
8a2624cc 18// Class for ZDC digit
19// ADC Channels for each PM
20// 5 for hadronic ZDCs 1 for EM ZDCs
6cb3ec36 21//
8a2624cc 22//**********************************************************************
6cb3ec36 23
24#include "AliZDCDigit.h"
25
26
27ClassImp(AliZDCDigit)
28
29//____________________________________________________________________________
30 AliZDCDigit::AliZDCDigit()
31{
32 // Default constructor
33
359cdddc 34 fSector[0] = 0;
35 fSector[1] = 0;
6de91202 36 fADCValue[0] = 0;
37 fADCValue[1] = 0;
6cb3ec36 38}
39
40//____________________________________________________________________________
6de91202 41AliZDCDigit::AliZDCDigit(Int_t *Sector, Int_t *ADCValue)
6cb3ec36 42{
5a881c97 43 // Constructor
44
359cdddc 45 Int_t i;
abf60186 46 for(i=0; i<2; i++) fSector[i] = Sector[i];
47 for(i=0; i<2; i++) fADCValue[i] = ADCValue[i];
6cb3ec36 48}
49
50//____________________________________________________________________________
f5cb71ad 51AliZDCDigit::AliZDCDigit(const AliZDCDigit & digit):TObject(digit)
6cb3ec36 52{
5a881c97 53 // Copy constructor
6cb3ec36 54
359cdddc 55 fSector[0] = digit.fSector[0];
56 fSector[1] = digit.fSector[1];
6de91202 57 fADCValue[0] = digit.fADCValue[0];
58 fADCValue[1] = digit.fADCValue[1];
6cb3ec36 59
60}
8a2624cc 61