/************************************************************************** * 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. * **************************************************************************/ //_________________________________________________________________________ // Rec Point in the PHOS EM calorimeter //*-- Author : Dmitri Peressounko RRC KI ////////////////////////////////////////////////////////////////////////////// // --- ROOT system --- #include "TMath.h" // --- Standard library --- #include "iostream.h" // --- AliRoot header files --- #include "AliPHOSGeometry.h" #include "AliPHOSEmcRecPoint.h" #include "AliRun.h" ClassImp(AliPHOSEmcRecPoint) //____________________________________________________________________________ AliPHOSEmcRecPoint::AliPHOSEmcRecPoint(Float_t W0, Float_t LocMaxCut) : AliPHOSRecPoint() { // ctor fMulDigit = 0 ; fAmp = 0. ; fEnergyList = new Float_t[fMaxDigit]; AliPHOSGeometry * PHOSGeom = (AliPHOSGeometry *) fGeom ; fDelta = PHOSGeom->GetCrystalSize(0) ; fW0 = W0 ; fLocMaxCut = LocMaxCut ; fLocPos.SetX(1000000.) ; //Local position should be evaluated } // //____________________________________________________________________________ // AliPHOSEmcRecPoint::~AliPHOSEmcRecPoint() // { // // dtor // } //____________________________________________________________________________ void AliPHOSEmcRecPoint::AddDigit(AliDigitNew & digit, Float_t Energy) { // adds a digit to the digits list // and accumulates the total amplitude and the multiplicity if ( fMulDigit >= fMaxDigit ) { // increase the size of the lists int * tempo = new ( int[fMaxDigit*=2] ) ; Float_t * tempoE = new ( Float_t[fMaxDigit*=2] ) ; Int_t index ; for ( index = 0 ; index < fMulDigit ; index++ ){ tempo[index] = fDigitsList[index] ; tempoE[index] = fEnergyList[index] ; } delete fDigitsList ; delete fEnergyList ; fDigitsList = tempo ; fEnergyList = tempoE ; } fDigitsList[fMulDigit] = (int) &digit ; fEnergyList[fMulDigit++]= Energy ; fAmp += Energy ; } //____________________________________________________________________________ Bool_t AliPHOSEmcRecPoint::AreNeighbours(AliPHOSDigit * digit1, AliPHOSDigit * digit2 ) { Bool_t aren = kFALSE ; AliPHOSGeometry * PHOSGeom = (AliPHOSGeometry *) fGeom ; Int_t relid1[4] ; PHOSGeom->AbsToRelNumbering(digit1->GetId(), relid1) ; Int_t relid2[4] ; PHOSGeom->AbsToRelNumbering(digit2->GetId(), relid2) ; Int_t RowDiff = TMath::Abs( relid1[2] - relid2[2] ) ; Int_t ColDiff = TMath::Abs( relid1[3] - relid2[3] ) ; if (( ColDiff<=1 ) && ( RowDiff <= 1 ) && (ColDiff+RowDiff > 0)) aren = kTRUE ; return aren ; } //____________________________________________________________________________ Int_t AliPHOSEmcRecPoint::Compare(TObject * obj) { Int_t rv ; AliPHOSEmcRecPoint * clu = (AliPHOSEmcRecPoint *)obj ; Int_t PHOSMod1 = this->GetPHOSMod() ; Int_t PHOSMod2 = clu->GetPHOSMod() ; TVector3 LocPos1; this->GetLocalPosition(LocPos1) ; TVector3 LocPos2; clu->GetLocalPosition(LocPos2) ; if(PHOSMod1 == PHOSMod2 ) { Int_t rowdif = (Int_t)TMath::Ceil(LocPos1.X()/fDelta)-(Int_t)TMath::Ceil(LocPos2.X()/fDelta) ; if (rowdif> 0) rv = -1 ; else if(rowdif < 0) rv = 1 ; else if(LocPos1.Z()>LocPos2.Z()) rv = -1 ; else rv = 1 ; } else { if(PHOSMod1 < PHOSMod2 ) rv = -1 ; else rv = 1 ; } return rv ; } //____________________________________________________________________________ Float_t AliPHOSEmcRecPoint::GetDispersion() { Float_t D = 0 ; Float_t wtot = 0 ; TVector3 LocPos; GetLocalPosition(LocPos); Float_t x = LocPos.X() ; Float_t z = LocPos.Z() ; // Int_t i = GetPHOSMod() ; AliPHOSDigit * digit ; AliPHOSGeometry * PHOSGeom = (AliPHOSGeometry *) fGeom ; Int_t iDigit; for(iDigit=0; iDigitAbsToRelNumbering(digit->GetId(), relid) ; PHOSGeom->RelPosInModule(relid, xi, zi); Float_t w = TMath::Max(0.,fW0+TMath::Log(fEnergyList[iDigit]/fAmp ) ) ; D += w*((xi-x)*(xi-x) + (zi-z)*(zi-z) ) ; wtot+=w ; } D /= wtot ; return TMath::Sqrt(D) ; } //____________________________________________________________________________ void AliPHOSEmcRecPoint::GetElipsAxis(Float_t * lambda) { Float_t wtot = 0. ; Float_t x = 0.; Float_t z = 0.; Float_t Dxx = 0.; Float_t Dzz = 0.; Float_t Dxz = 0.; AliPHOSDigit * digit ; AliPHOSGeometry * PHOSGeom = (AliPHOSGeometry *) fGeom ; Int_t iDigit; for(iDigit=0; iDigitAbsToRelNumbering(digit->GetId(), relid) ; PHOSGeom->RelPosInModule(relid, xi, zi); Float_t w = TMath::Max(0.,fW0+TMath::Log(fEnergyList[iDigit]/fAmp ) ) ; Dxx += w * xi * xi ; x += w * xi ; Dzz += w * zi * zi ; z += w * zi ; Dxz += w * xi * zi ; wtot += w ; } Dxx /= wtot ; x /= wtot ; Dxx -= x * x ; Dzz /= wtot ; z /= wtot ; Dzz -= z * z ; Dxz /= wtot ; Dxz -= x * z ; lambda[0] = TMath::Sqrt( 0.5 * (Dxx + Dzz) + TMath::Sqrt( 0.25 * (Dxx - Dzz) * (Dxx - Dzz) + Dxz * Dxz ) ) ; lambda[1] = TMath::Sqrt( 0.5 * (Dxx + Dzz) - TMath::Sqrt( 0.25 * (Dxx - Dzz) * (Dxx - Dzz) + Dxz * Dxz ) ) ; } //____________________________________________________________________________ Float_t AliPHOSEmcRecPoint::GetMaximalEnergy(void) { Float_t menergy = 0. ; Int_t iDigit; for(iDigit=0; iDigit menergy) menergy = fEnergyList[iDigit] ; } return menergy ; } //____________________________________________________________________________ Int_t AliPHOSEmcRecPoint::GetMultiplicityAtLevel(Float_t H) { Int_t multipl = 0 ; Int_t iDigit ; for(iDigit=0; iDigit H * fAmp) multipl++ ; } return multipl ; } //____________________________________________________________________________ Int_t AliPHOSEmcRecPoint::GetNumberOfLocalMax(int * maxAt, Float_t * maxAtEnergy) { AliPHOSDigit * digit ; AliPHOSDigit * digitN ; Int_t iDigitN ; Int_t iDigit ; for(iDigit=0; iDigit fEnergyList[iDigitN] ) { maxAt[iDigitN] = -1 ; //but may be digit is not local max too ? if(fEnergyList[iDigit]fEnergyList[iDigitN]-fLocMaxCut) maxAt[iDigitN] = -1 ; } } // if Areneighbours } // while digitN } // slot not empty } // while digit iDigitN = 0 ; for(iDigit=0; iDigitAbsToRelNumbering(digit->GetId(), relid) ; PHOSGeom->RelPosInModule(relid, xi, zi); Float_t w = TMath::Max( 0., fW0 + TMath::Log( fEnergyList[iDigit] / fAmp ) ) ; x += xi * w ; z += zi * w ; wtot += w ; } x /= wtot ; z /= wtot ; fLocPos.SetX(x) ; fLocPos.SetY(0.) ; fLocPos.SetZ(z) ; LPos = fLocPos ; } // //____________________________________________________________________________ // AliPHOSEmcRecPoint& AliPHOSEmcRecPoint::operator = (AliPHOSEmcRecPoint Clu) // { // int * DL = Clu.GetDigitsList() ; // if(fDigitsList) // delete fDigitsList ; // AliPHOSDigit * digit ; // Int_t iDigit; // for(iDigit=0; iDigit