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