]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCDigit.cxx
fixing r27675: adding missing files
[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
2fcfe987 20// 5 for hadronic ZDCs 2 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
2fcfe987 34 Int_t i;
35 for(i=0; i<2; i++) fSector[i] = 0;
36 for(i=0; i<2; i++) fADCValue[i] = 0;
6cb3ec36 37}
38
39//____________________________________________________________________________
6de91202 40AliZDCDigit::AliZDCDigit(Int_t *Sector, Int_t *ADCValue)
6cb3ec36 41{
5a881c97 42 // Constructor
43
359cdddc 44 Int_t i;
abf60186 45 for(i=0; i<2; i++) fSector[i] = Sector[i];
46 for(i=0; i<2; i++) fADCValue[i] = ADCValue[i];
6cb3ec36 47}
48
49//____________________________________________________________________________
f5cb71ad 50AliZDCDigit::AliZDCDigit(const AliZDCDigit & digit):TObject(digit)
6cb3ec36 51{
5a881c97 52 // Copy constructor
6cb3ec36 53
359cdddc 54 fSector[0] = digit.fSector[0];
55 fSector[1] = digit.fSector[1];
6de91202 56 fADCValue[0] = digit.fADCValue[0];
57 fADCValue[1] = digit.fADCValue[1];
6cb3ec36 58
59}
8a2624cc 60