/************************************************************************** * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ /* $Id: */ //_________________________________________________________________________ // EMCAL digit: // A Digit is the sum of the energy lost in an EMCAL Tower // It also stores information on Primary, and enterring particle // tracknumbers Digits are created using AliEMCALSDigitizer, followed // by AliEMCALDigitizer // //*-- Author: Sahal Yacoob (LBL) // based on : AliPHOSDigit //__________________________________________________________________________ // --- ROOT system --- // --- Standard library --- #include // --- AliRoot header files --- #include "AliEMCALDigit.h" ClassImp(AliEMCALDigit) //____________________________________________________________________________ AliEMCALDigit::AliEMCALDigit() { // default ctor fIndexInList = -1 ; fNprimary = 0 ; fNMaxPrimary = 5 ; fNiparent = 0 ; fNMaxiparent = fNMaxPrimary*10; } //____________________________________________________________________________ AliEMCALDigit::AliEMCALDigit(Int_t primary, Int_t iparent, Int_t id, Int_t DigEnergy, Int_t index) { // ctor with all data fNMaxPrimary = 5 ; fNMaxiparent = fNMaxPrimary*10; fAmp = DigEnergy ; fId = id ; fIndexInList = index ; if( primary != -1){ fNprimary = 1 ; fPrimary[0] = primary ; fNiparent = 1 ; fIparent[0] = iparent ; } else{ //If the contribution of this primary smaller than fDigitThreshold (AliEMCALv1) fNprimary = 0 ; fPrimary[0] = -1 ; fNiparent = 0 ; fIparent[0] = -1 ; } Int_t i ; for ( i = 1; i < fNMaxPrimary ; i++) fPrimary[i] = -1 ; for ( Int_t j =1; j< fNMaxiparent ; j++) fIparent[j] = -1 ; } //____________________________________________________________________________ AliEMCALDigit::AliEMCALDigit(const AliEMCALDigit & digit) { // copy ctor fNMaxPrimary = digit.fNMaxPrimary ; fNMaxiparent = digit.fNMaxiparent ; Int_t i ; for ( i = 0; i < fNMaxPrimary ; i++) fPrimary[i] = digit.fPrimary[i] ; Int_t j ; for (j = 0; j< fNMaxiparent ; j++) fIparent[j] = digit.fIparent[j] ; fAmp = digit.fAmp ; fId = digit.fId; fIndexInList = digit.fIndexInList ; fNprimary = digit.fNprimary ; fNiparent = digit.fNiparent ; } //____________________________________________________________________________ AliEMCALDigit::~AliEMCALDigit() { // Delete array of primiries if any } //____________________________________________________________________________ Int_t AliEMCALDigit::Compare(const TObject * obj) const { // Compares two digits with respect to its Id // to sort according increasing Id Int_t rv ; AliEMCALDigit * digit = (AliEMCALDigit *)obj ; Int_t iddiff = fId - digit->GetId() ; if ( iddiff > 0 ) rv = 1 ; else if ( iddiff < 0 ) rv = -1 ; else rv = 0 ; return rv ; } //____________________________________________________________________________ Int_t AliEMCALDigit::GetPrimary(Int_t index) const { // retrieves the primary particle number given its index in the list Int_t rv = -1 ; if ( index <= fNprimary ){ rv = fPrimary[index-1] ; } return rv ; } //____________________________________________________________________________ Int_t AliEMCALDigit::GetIparent(Int_t index) const { // retrieves the primary particle number given its index in the list Int_t rv = -1 ; if ( index <= fNiparent ){ rv = fIparent[index-1] ; } return rv ; } //____________________________________________________________________________ void AliEMCALDigit::ShiftPrimary(Int_t shift){ //shifts primary nimber to BIG offset, to separate primary in different TreeK Int_t index ; for(index = 0; index fNMaxPrimary) { cout << "AliEMCALDigit >> Increase NMaxPrimary "<< endl ; return *this ; } } } for (index = 0 ; index < digit.fNiparent ; index++){ Bool_t dejavu = kTRUE ; Int_t old ; for ( old = 0 ; (old < max2) && dejavu; old++) { //already have this primary? if(fIparent[old] == (digit.fIparent)[index]) dejavu = kFALSE; } if(dejavu){ fIparent[fNiparent] = (digit.fIparent)[index] ; fNiparent++ ; if(fNiparent>fNMaxiparent) { cout << "AliEMCALDigit >> Increase NMaxiparent "<< endl ; return *this ; } } } return *this ; } //____________________________________________________________________________ ostream& operator << ( ostream& out , const AliEMCALDigit & digit) { // Prints the data of the digit out << "ID " << digit.fId << " Energy = " << digit.fAmp << endl ; Int_t i,j ; for(i=0;i