X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=ZDC%2FAliZDCDigit.cxx;h=43745cf5303d95219a7052f7b4c8f3981d60fc26;hb=b5856638cd450f352221c8a60affd597d22ab0f7;hp=9ab4bac0cf4a0c68116ba202fde177d84cae5179;hpb=6cb3ec3619f4b5e9e70a0084795b8c6174622db7;p=u%2Fmrichter%2FAliRoot.git diff --git a/ZDC/AliZDCDigit.cxx b/ZDC/AliZDCDigit.cxx index 9ab4bac0cf4..43745cf5303 100644 --- a/ZDC/AliZDCDigit.cxx +++ b/ZDC/AliZDCDigit.cxx @@ -13,12 +13,13 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ -//_________________________________________________________________________ +//********************************************************************** // +// Class for ZDC digit +// ADC Channels for each PM +// 5 for hadronic ZDCs 2 for EM ZDCs // -// ZDC digit = ADC Channels for each PM -// -//_________________________________________________________________________ +//********************************************************************** #include "AliZDCDigit.h" @@ -30,26 +31,30 @@ ClassImp(AliZDCDigit) { // Default constructor + Int_t i; + for(i=0; i<2; i++) fSector[i] = 0; + for(i=0; i<2; i++) fADCValue[i] = 0; } //____________________________________________________________________________ -AliZDCDigit::AliZDCDigit(Int_t Det, Int_t Quad, Float_t ADCValue) +AliZDCDigit::AliZDCDigit(Int_t *Sector, Int_t *ADCValue) { - // constructor with all data - - - fDetector = Det; - fQuadrant = Quad; - fADCValue = ADCValue; + // Constructor + + Int_t i; + for(i=0; i<2; i++) fSector[i] = Sector[i]; + for(i=0; i<2; i++) fADCValue[i] = ADCValue[i]; } //____________________________________________________________________________ -AliZDCDigit::AliZDCDigit(const AliZDCDigit & digit) +AliZDCDigit::AliZDCDigit(const AliZDCDigit & digit):TObject(digit) { - // copy constructor + // Copy constructor - fDetector = digit.fDetector; - fQuadrant = digit.fQuadrant; - fADCValue = digit.fADCValue; + fSector[0] = digit.fSector[0]; + fSector[1] = digit.fSector[1]; + fADCValue[0] = digit.fADCValue[0]; + fADCValue[1] = digit.fADCValue[1]; } +