]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALTriggerPatch.cxx
SensorThickness was defined twice. Set inner chip thickness to 250mum to bypass bug...
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTriggerPatch.cxx
index e98f0293c223c6a1880365712969ceba88a57db4..0342217e454811c6c70b3bb0b01c19baaf0a3c16 100644 (file)
@@ -22,36 +22,36 @@ Author: R. GUERNANE LPSC Grenoble CNRS/IN2P3
 */
 
 #include "AliEMCALTriggerPatch.h"
-#include "AliRunLoader.h"
-#include "AliRun.h"
-#include "AliEMCALGeometry.h"
-#include "AliEMCAL.h"
-
-#include "TArrayI.h"
+#include "AliLog.h"
 
 ClassImp(AliEMCALTriggerPatch)
 
 //____________
 AliEMCALTriggerPatch::AliEMCALTriggerPatch() : TObject(),
 fPosition(0x0),
-fSum(0)
+fSum(0),
+fTime(0),
+fPeaks(0)
 {
        // Default constructor
 }
 
 //____________
-AliEMCALTriggerPatch::AliEMCALTriggerPatch( Int_t i, Int_t j,  Int_t k ) : TObject(),
-fPosition(new TVector2( i , j )),
-fSum(k)
+AliEMCALTriggerPatch::AliEMCALTriggerPatch(Int_t i, Int_t j,  Int_t k, Int_t l) : TObject(),
+fPosition(new TVector2(i, j)),
+fSum(k),
+fTime(l),
+fPeaks(0)
 {
+       //
 }
 
-//____________
-
 //____________________________________________________________________
 AliEMCALTriggerPatch::AliEMCALTriggerPatch(const AliEMCALTriggerPatch& other) : TObject(other), 
-fPosition( new TVector2(*other.fPosition) ),
-fSum( other.fSum )
+fPosition(new TVector2(*other.fPosition)),
+fSum(other.fSum),
+fTime(other.fTime),
+fPeaks(other.fPeaks)
 {      
        // Copy ctor
 }
@@ -59,56 +59,23 @@ fSum( other.fSum )
 //____________
 AliEMCALTriggerPatch::~AliEMCALTriggerPatch()
 {      
+       //
        if (fPosition) delete fPosition;
 }
 
 //____________
-void AliEMCALTriggerPatch::Print(const Option_t*) const
+void AliEMCALTriggerPatch::SetPeak(Int_t x, Int_t y, Int_t sizeX, Int_t sizeY)
 {
-       printf("]> Patch at (%2d , %2d) w/ sum %3d\n",
-                  (int)fPosition->X(),(int)fPosition->Y(),fSum); 
+       //
+       if (sizeX * sizeY > 31) AliError("32b limit exceeded!");
+       
+       fPeaks = (fPeaks | (1 << (y * sizeX + x)));
 }
 
-//________________
-void AliEMCALTriggerPatch::GetAbsCellIdsFromPatchPosition( TVector2& pSize, TVector2& sSize, TArrayI& absid )
+//____________
+void AliEMCALTriggerPatch::Print(const Option_t*) const
 {
-       AliRunLoader*     runLoader = AliRunLoader::Instance();
-       AliEMCALGeometry*      geom = dynamic_cast<AliEMCAL*>(runLoader->GetAliRun()->GetDetector("EMCAL"))->GetGeometry();
-       
-       Int_t nTowersinpatch = (Int_t) (pSize.X() * pSize.Y() * sSize.X() * sSize.Y() * 4);
-       
-       absid.Set( nTowersinpatch );
-       
-       // fPosition: patch position in the STU region
-       Int_t ix = (Int_t)(( fPosition->X() + pSize.X() ) * sSize.X()); 
-       Int_t iy = (Int_t)(( fPosition->Y() + pSize.Y() ) * sSize.Y());
-       
-       Int_t it = 0;
-       
-       for (Int_t i=(Int_t) (fPosition->X() * sSize.X()); i<ix; i++) // Loop over subregions FastOR
-       {
-         for (Int_t j=(Int_t) (fPosition->Y() * sSize.Y()); j<iy; j++) 
-               {
-                       Int_t nSupMod = int(i/24) + 2 * int(j/12);
-                       
-                       Int_t nModule = 0;
-                       
-                       if ( nSupMod<10 )
-                               nModule = ( i < 24 ) ? 12 * ( 23 - i ) + 11 - j%12 : 12 * ( i%24 ) + 11 - j%12;
-                       else
-                               nModule = ( i < 24 ) ?  6 * ( 23 - i ) +  5 - j%12 :  6 * ( i%24 ) +  5 - j;
-                       
-                       // Convert (TRU,eta,phi) to Id 
-                       for (Int_t k=0;k<2;k++)
-                       {
-                               for (Int_t l=0;l<2;l++)
-                               {
-                                       Int_t iphi, ieta;
-                                       geom->GetCellPhiEtaIndexInSModule(nSupMod, nModule, k, l, iphi, ieta);
-
-                                       absid.SetAt( geom->GetAbsCellIdFromCellIndexes(nSupMod, iphi, ieta) , it++ );
-                               }
-                       }
-               }
-       }
+       //
+       printf("]> Patch at (%2d , %2d) w/ sum %3d time %2d\n",
+                  (int)fPosition->X(), (int)fPosition->Y(), fSum, fTime); 
 }