]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDCDigit.cxx
AddTimeStamp was always increasing track length but accounting
[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 2 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   Int_t i;
35   for(i=0; i<2; i++) fSector[i] = 0;
36   for(i=0; i<2; i++) fADCValue[i] = 0;  
37 }
38
39 //____________________________________________________________________________
40 AliZDCDigit::AliZDCDigit(Int_t *Sector, Int_t *ADCValue) 
41 {  
42   // Constructor 
43  
44   Int_t i;
45   for(i=0; i<2; i++) fSector[i] = Sector[i];
46   for(i=0; i<2; i++) fADCValue[i] = ADCValue[i];  
47 }
48
49 //____________________________________________________________________________
50 AliZDCDigit::AliZDCDigit(const AliZDCDigit & digit):TObject(digit)
51 {
52   // Copy constructor
53
54   fSector[0]   = digit.fSector[0];           
55   fSector[1]   = digit.fSector[1];           
56   fADCValue[0] = digit.fADCValue[0];             
57   fADCValue[1] = digit.fADCValue[1];             
58
59 }
60
61 //____________________________________________________________________________
62 AliZDCDigit &AliZDCDigit::operator=(const AliZDCDigit &digit)
63 {
64   // Assignemnt constructor
65   if(&digit == this) return *this;
66
67   for(int i=0; i<2; i++){
68     fSector[i]   = digit.fSector[i];           
69     fADCValue[i] = digit.fADCValue[i];             
70   }
71   
72   return *this;
73 }
74