]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALTriggerElectronics.cxx
ATO-97 Function to connect CalPads trees into the common Tree as friend trees. naming...
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTriggerElectronics.cxx
index e87b64c3ffc9f8a13aa35019378ea49fe2994f1b..f4cd53f11c76a5c116d7c34e157717c8d878b77c 100644 (file)
@@ -42,7 +42,7 @@ Author: R. GUERNANE LPSC Grenoble CNRS/IN2P3
 
 namespace
 {
-       const Int_t kNTRU = 30;
+       const Int_t kNTRU = 32; // TODO: kNTRU should be set to / replaced by  fGeometry->GetNTotalTRU() (total number of TRU for a given geom)  after adding 1 STU for DCAL
 }
 
 ClassImp(AliEMCALTriggerElectronics)
@@ -50,19 +50,31 @@ ClassImp(AliEMCALTriggerElectronics)
 //__________________
 AliEMCALTriggerElectronics::AliEMCALTriggerElectronics(const AliEMCALTriggerDCSConfig *dcsConf) : TObject(),
 fTRU(new TClonesArray("AliEMCALTriggerTRU",32)),
-fSTU(0x0)
+fSTU(0x0),
+fGeometry(0)
 {
        // Ctor
        
        TVector2 rSize;
        
        rSize.Set( 24.,  4. );
-
+       
+       AliRunLoader *rl = AliRunLoader::Instance();
+       if (rl->GetAliRun() && rl->GetAliRun()->GetDetector("EMCAL")) {
+               AliEMCAL *emcal = dynamic_cast<AliEMCAL*>(rl->GetAliRun()->GetDetector("EMCAL"));
+               if (emcal) fGeometry = emcal->GetGeometry();
+       }
+       
+       if (!fGeometry) {               
+               fGeometry =  AliEMCALGeometry::GetInstance(AliEMCALGeometry::GetDefaultGeometryName());
+               AliError("Cannot access geometry, create a new default one!");
+       }
+       
        // 32 TRUs
-       for (Int_t i=0;i<kNTRU;i++) 
-       {
-               AliEMCALTriggerTRUDCSConfig* truConf = dcsConf->GetTRUDCSConfig(i);
-               new ((*fTRU)[i]) AliEMCALTriggerTRU(truConf, rSize, i % 2);
+       for (Int_t i = 0; i < kNTRU; i++) {
+                if(i>=(fGeometry->GetNTotalTRU())) continue; //  i <= kNTRU < 62. Prevents fTRU to go out of bonds with EMCALFirstYEARV1 of EMCALCompleteV1 (NTRU<32) TODO: fix the logic
+               AliEMCALTriggerTRUDCSConfig *truConf = dcsConf->GetTRUDCSConfig(fGeometry->GetOnlineIndexFromTRUIndex(i));
+               if (truConf) new ((*fTRU)[i]) AliEMCALTriggerTRU(truConf, rSize, i % 2);
        }
        
        rSize.Set( 48., 64. );
@@ -72,11 +84,16 @@ fSTU(0x0)
        fSTU = new AliEMCALTriggerSTU(stuConf, rSize);
        
        TString str = "map";
-       for (Int_t i=0;i<kNTRU;i++) fSTU->Build(str,
-                                                                                       i,
-                                                                                       (static_cast<AliEMCALTriggerTRU*>(fTRU->At(i)))->Map(),
-                                                                                       (static_cast<AliEMCALTriggerTRU*>(fTRU->At(i)))->RegionSize() 
-                                                                                   );
+       for (Int_t i = 0; i < kNTRU; i++) {
+               AliEMCALTriggerTRU *iTRU = static_cast<AliEMCALTriggerTRU*>(fTRU->At(i));
+               if (!iTRU) continue;
+
+               fSTU->Build(str,
+                                       i,
+                                       iTRU->Map(),
+                                       iTRU->RegionSize() 
+                                       );
+       }
 }
 
 //________________
@@ -92,18 +109,6 @@ AliEMCALTriggerElectronics::~AliEMCALTriggerElectronics()
 void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_t V0M[], AliEMCALTriggerData* data)
 {
        // Digits to trigger
-
-       AliEMCALGeometry* geom = 0x0;
-       
-       AliRunLoader *rl = AliRunLoader::Instance();
-       if (rl->GetAliRun() && rl->GetAliRun()->GetDetector("EMCAL")){
-         AliEMCAL* emcal = dynamic_cast<AliEMCAL*>(rl->GetAliRun()->GetDetector("EMCAL"));
-         if(emcal)geom = emcal->GetGeometry();
-       }
-       
-       if(!geom) geom =  AliEMCALGeometry::GetInstance(AliEMCALGeometry::GetDefaultGeometryName());
-       
-       if(!geom) AliError("Cannot access geometry!");
        
        Int_t pos, px, py, id; 
        
@@ -122,30 +127,41 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
                
                Int_t iTRU, iADC;
                
-               Bool_t isOK1 = geom->GetTRUFromAbsFastORIndex(id, iTRU, iADC);
+               Bool_t isOK1 = fGeometry->GetTRUFromAbsFastORIndex(id, iTRU, iADC);
                
-               if ((isOK1 && iTRU >= kNTRU) || !isOK1) continue;
+               if (!isOK1) continue;
 
                for (Int_t j = 0; j < digit->GetNSamples(); j++)
                {
                        Int_t time, amp;
                        Bool_t isOK2 = digit->GetTimeSample(j, time, amp);
                        
-                       if (isOK1 && isOK2 && amp) (static_cast<AliEMCALTriggerTRU*>(fTRU->At(iTRU)))->SetADC(iADC, time, amp);
+                       if (isOK1 && isOK2 && amp) {
+                               AliDebug(999, Form("=== TRU# %2d ADC# %2d time# %2d signal %d ===", iTRU, iADC, time, amp));
+                               if(iTRU>32) continue; // kNTRU < iTRU < 62. Prevents fTRU to go out of bonds with DCAL TODO: add STU for DCAL and fix the logic 
+                               AliEMCALTriggerTRU * etr = (static_cast<AliEMCALTriggerTRU*>(fTRU->At(iTRU)));
+                               if (etr) {
+                                 if (data->GetMode())
+                                   etr->SetADC(iADC, time, 4 * amp);
+                                 else
+                                   etr->SetADC(iADC, time,     amp);
+                               }
+                       }
                }
                
-               if (geom->GetPositionInEMCALFromAbsFastORIndex(id, px, py)) posMap[px][py] = i;
+               if (fGeometry->GetPositionInEMCALFromAbsFastORIndex(id, px, py)) posMap[px][py] = i;
        }
 
        Int_t iL0 = 0;
 
        Int_t timeL0[kNTRU] = {0}, timeL0min = 999;
        
-       for (Int_t i=0; i<kNTRU; i++) 
+       for (Int_t i = 0; i < kNTRU; i++) 
        {
-               AliDebug(999, Form("===========< TRU %2d >============\n", i));
+               AliEMCALTriggerTRU *iTRU = static_cast<AliEMCALTriggerTRU*>(fTRU->At(i));
+               if (!iTRU) continue;
                
-               AliEMCALTriggerTRU* iTRU = static_cast<AliEMCALTriggerTRU*>(fTRU->At(i));
+               AliDebug(999, Form("===========< TRU %2d >============", i));
                
                if (iTRU->L0()) // L0 recomputation: *ALWAYS* done from FALTRO
                {
@@ -163,7 +179,7 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
                        data->SetL0Trigger(0, i, 0);
        }
 
-       AliDebug(999, Form("=== %2d TRU (out of %2d) has issued a L0 / Min L0 time: %d\n", iL0, kNTRU, timeL0min));
+       AliDebug(999, Form("=== %2d TRU (out of %2d) has issued a L0 / Min L0 time: %d", iL0, fTRU->GetEntriesFast(), timeL0min));
        
        AliEMCALTriggerRawDigit* dig = 0x0;
        
@@ -173,7 +189,8 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
                for (Int_t i = 0; i < kNTRU; i++)
                {
                        AliEMCALTriggerTRU *iTRU = static_cast<AliEMCALTriggerTRU*>(fTRU->At(i));
-
+                       if (!iTRU) continue;
+                       
                        Int_t reg[24][4];
                        for (int j = 0; j < 24; j++) for (int k = 0; k < 4; k++) reg[j][k] = 0;
                                        
@@ -184,25 +201,30 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
                                for (int k = 0; k < iTRU->RegionSize()->Y(); k++)
                                {
                                        if (reg[j][k]
-                                                       && 
-                                                       geom->GetAbsFastORIndexFromPositionInTRU(i, j, k, id)
-                                                       &&
-                                                       geom->GetPositionInEMCALFromAbsFastORIndex(id, px, py))
+                                               && 
+                                               fGeometry->GetAbsFastORIndexFromPositionInTRU(i, j, k, id)
+                                               &&
+                                               fGeometry->GetPositionInEMCALFromAbsFastORIndex(id, px, py))
                                        {
                                                pos = posMap[px][py];
                                                                        
                                                if (pos == -1)
                                                {
                                                        // Add a new digit
+                                                       posMap[px][py] = digits->GetEntriesFast();
+
                                                        new((*digits)[digits->GetEntriesFast()]) AliEMCALTriggerRawDigit(id, 0x0, 0);
                                                                                
-                                                       dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);
+                                                       dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);                                                       
                                                }
                                                else
                                                {
                                                        dig = (AliEMCALTriggerRawDigit*)digits->At(pos);
                                                }
                                                
+                                               // 14b to 12b STU time sums
+                                               reg[j][k] >>= 2; 
+                                               
                                                dig->SetL1TimeSum(reg[j][k]);
                                        }
                                }
@@ -212,23 +234,27 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
 
        if (iL0 && !data->GetMode())
        {
-                       // transform local to global 
-               
                for (Int_t i = 0; i < kNTRU; i++)
                {
-                       AliEMCALTriggerTRU* iTRU = static_cast<AliEMCALTriggerTRU*>(fTRU->At(i));
+                       AliEMCALTriggerTRU *iTRU = static_cast<AliEMCALTriggerTRU*>(fTRU->At(i));
+                       if (!iTRU) continue;
+                       
+                       AliDebug(999, Form("=== TRU# %2d found %d patches", i, (iTRU->Patches()).GetEntriesFast()));
                        
-                       TIter Next(&iTRU->Patches());
-                       while (AliEMCALTriggerPatch* p = (AliEMCALTriggerPatch*)Next())
+                       TIter next(&iTRU->Patches());
+                       while (AliEMCALTriggerPatch* p = (AliEMCALTriggerPatch*)next())
                        {
                                p->Position(px, py);
                        
-                       // Local 2 Global       
-                               if (geom->GetAbsFastORIndexFromPositionInTRU(i, px, py, id) && 
-                                                               geom->GetPositionInEMCALFromAbsFastORIndex(id, px, py)) p->SetPosition(px, py);
+                               // Local 2 Global
+                               if (fGeometry->GetAbsFastORIndexFromPositionInTRU(i, px, py, id) 
+                                       && 
+                                       fGeometry->GetPositionInEMCALFromAbsFastORIndex(id, px, py)) p->SetPosition(px, py);
                                
-                               Int_t peaks = p->Peaks();
+                               if (AliDebugLevel()) p->Print("");
                                
+                               Int_t peaks = p->Peaks();
+                                                               
                                Int_t sizeX = (Int_t) ((iTRU->PatchSize())->X() * (iTRU->SubRegionSize())->X());
                                Int_t sizeY = (Int_t) ((iTRU->PatchSize())->Y() * (iTRU->SubRegionSize())->Y());
                                        
@@ -238,30 +264,31 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
                                        {
                                                pos = posMap[px + j % sizeX][py + j / sizeX];
                                                        
-                                               if (pos == -1)
-                                               {
-                                                               // Add a new digit
+                                               if (pos == -1) {
+                                                       // Add a new digit
+                                                       posMap[px + j % sizeX][py + j / sizeX] = digits->GetEntriesFast();
+
                                                        new((*digits)[digits->GetEntriesFast()]) AliEMCALTriggerRawDigit(id, 0x0, 0);
                                                                
-                                                       dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);
-                                               }
-                                               else
-                                               {
+                                                       dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);                                                       
+                                               } else {
                                                        dig = (AliEMCALTriggerRawDigit*)digits->At(pos);
                                                }
                                                        
-                                               dig->SetL0Time(timeL0min);
+                                               dig->SetL0Time(p->Time());
                                        }
                                }
                                        
                                pos = posMap[px][py];
                                        
-                               if (pos == -1)
-                               {
-                                               // Add a new digit
+                               if (pos == -1) {
+                                       // Add a new digit
+                                       posMap[px][py] = digits->GetEntriesFast();
+
                                        new((*digits)[digits->GetEntriesFast()]) AliEMCALTriggerRawDigit(id, 0x0, 0);
                                                
                                        dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);
+                                       
                                }
                                else
                                {
@@ -273,17 +300,14 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
                }
        }
        
-       //
        // Prepare STU for L1 calculation
-       
-       for (int i = 0; i < (fSTU->RegionSize())->X(); i++)
-       {
-               for (int j = 0; j < (fSTU->RegionSize())->Y(); j++)
-               {
+       for (int i = 0; i < (fSTU->RegionSize())->X(); i++) {
+               for (int j = 0; j < (fSTU->RegionSize())->Y(); j++) {
+                       
                        pos = posMap[i][j];
                
-                       if (pos >= 0) 
-                       {
+                       if (pos >= 0) {
+                               
                                AliEMCALTriggerRawDigit *digit = (AliEMCALTriggerRawDigit*)digits->At(pos);
                
                                if (digit->GetL1TimeSum() > -1) region[i][j] = digit->GetL1TimeSum();
@@ -291,82 +315,111 @@ void AliEMCALTriggerElectronics::Digits2Trigger(TClonesArray* digits, const Int_
                }
        }
        
+       AliDebug(999,"==================== STU  ====================");
+       if (AliDebugLevel() >= 999) fSTU->Scan();
+       AliDebug(999,"==============================================");
+       
        fSTU->SetRegion(region);
        
        if (data->GetMode()) 
        {
-               fSTU->SetThreshold(kL1Gamma, data->GetL1GammaThreshold());
-               fSTU->SetThreshold(kL1Jet,   data->GetL1JetThreshold()  );
+               for (int ithr = 0; ithr < 2; ithr++) {
+                       AliDebug(999, Form(" THR %d / EGA %d / EJE %d", ithr, data->GetL1GammaThreshold(ithr), data->GetL1JetThreshold(ithr)));
+                                                          
+                       fSTU->SetThreshold(kL1GammaHigh + ithr, data->GetL1GammaThreshold(ithr));
+                       fSTU->SetThreshold(kL1JetHigh + ithr, data->GetL1JetThreshold(  ithr));
+               }
        }
        else
        {
-               fSTU->ComputeThFromV0(kL1Gamma, V0M); 
-               data->SetL1GammaThreshold( fSTU->GetThreshold(kL1Gamma));
-               fSTU->ComputeThFromV0(kL1Jet,   V0M);
-               data->SetL1JetThreshold(   fSTU->GetThreshold(kL1Jet)  );
+               for (int ithr = 0; ithr < 2; ithr++) {
+                       //
+                       fSTU->ComputeThFromV0(kL1GammaHigh + ithr, V0M); 
+                       data->SetL1GammaThreshold(ithr, fSTU->GetThreshold(kL1GammaHigh + ithr));
+                       
+                       fSTU->ComputeThFromV0(kL1JetHigh + ithr,   V0M);
+                       data->SetL1JetThreshold(ithr, fSTU->GetThreshold(kL1JetHigh + ithr)  );
+                       
+                       AliDebug(999, Form("STU THR %d EGA %d EJE %d", ithr, fSTU->GetThreshold(kL1GammaHigh + ithr), fSTU->GetThreshold(kL1JetHigh + ithr)));
+               }
        }
 
-       fSTU->L1(kL1Gamma);
+       for (int ithr = 0; ithr < 2; ithr++) {
+               //
+               fSTU->Reset();
                
-       TIterator* nP = 0x0;
+               fSTU->L1(kL1GammaHigh + ithr);
                
-       nP = (fSTU->Patches()).MakeIterator();
-       
-       while (AliEMCALTriggerPatch* p = (AliEMCALTriggerPatch*)nP->Next()) 
-       {                       
-               p->Position(px, py);
+               TIterator* nP = 0x0;
+               
+               nP = (fSTU->Patches()).MakeIterator();
+               
+               AliDebug(999, Form("=== STU found %d gamma patches", (fSTU->Patches()).GetEntriesFast()));
+               
+               while (AliEMCALTriggerPatch* p = (AliEMCALTriggerPatch*)nP->Next()) 
+               {                       
+                       p->Position(px, py);
                        
-               if (geom->GetAbsFastORIndexFromPositionInEMCAL(px, py, id))
-               {
-                       if (posMap[px][py] == -1)
+                       if (AliDebugLevel()) p->Print("");
+                       
+                       if (fGeometry->GetAbsFastORIndexFromPositionInEMCAL(px, py, id))
                        {
+                               if (posMap[px][py] == -1)
+                               {
+                                       posMap[px][py] = digits->GetEntriesFast();
+                                       
                                        // Add a new digit
-                               new((*digits)[digits->GetEntriesFast()]) AliEMCALTriggerRawDigit(id, 0x0, 0);
+                                       new((*digits)[digits->GetEntriesFast()]) AliEMCALTriggerRawDigit(id, 0x0, 0);
                                        
-                               dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);
-                       } 
-                       else
-                       {
-                               dig = (AliEMCALTriggerRawDigit*)digits->At(posMap[px][py]);                                                             
-                       }
+                                       dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);
+                               } 
+                               else
+                               {
+                                       dig = (AliEMCALTriggerRawDigit*)digits->At(posMap[px][py]);                                                             
+                               }
+                               
+                               if (AliDebugLevel()) dig->Print("");
                                
-                       dig->SetTriggerBit(kL1Gamma,0);
+                               dig->SetTriggerBit(kL1GammaHigh + ithr, 0);
+                       }
                }
-       }
-
-       fSTU->Reset();
-
-       fSTU->L1(kL1Jet);
                
-       nP = (fSTU->Patches()).MakeIterator();
+               fSTU->Reset();
+               
+               fSTU->L1(kL1JetHigh + ithr);
+               
+               nP = (fSTU->Patches()).MakeIterator();
+               
+               AliDebug(999, Form("=== STU found %d jet patches", (fSTU->Patches()).GetEntriesFast()));
+               
+               while (AliEMCALTriggerPatch* p = (AliEMCALTriggerPatch*)nP->Next()) 
+               {                       
+                       p->Position(px, py);
                        
-       while (AliEMCALTriggerPatch* p = (AliEMCALTriggerPatch*)nP->Next()) 
-       {                       
-               p->Position(px, py);
-
-               px *= (Int_t)((fSTU->SubRegionSize())->X());
-
-               py *= (Int_t)((fSTU->SubRegionSize())->Y());
+                       if (AliDebugLevel()) p->Print("");
                        
-               if (geom->GetAbsFastORIndexFromPositionInEMCAL(px, py, id))
-               {
-                       if (posMap[px][py] == -1)
+                       if (fGeometry->GetAbsFastORIndexFromPositionInEMCAL(px, py, id))
                        {
+                               if (posMap[px][py] == -1)
+                               {
+                                       posMap[px][py] = digits->GetEntriesFast();
+                                       
                                        // Add a new digit
-                               new((*digits)[digits->GetEntriesFast()]) AliEMCALTriggerRawDigit(id, 0x0, 0);
+                                       new((*digits)[digits->GetEntriesFast()]) AliEMCALTriggerRawDigit(id, 0x0, 0);
                                        
-                               dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);
-                       } 
-                       else
-                       {
-                               dig = (AliEMCALTriggerRawDigit*)digits->At(posMap[px][py]);
-                       }
+                                       dig = (AliEMCALTriggerRawDigit*)digits->At(digits->GetEntriesFast() - 1);
+                               } 
+                               else
+                               {
+                                       dig = (AliEMCALTriggerRawDigit*)digits->At(posMap[px][py]);
+                               }
+                               
+                               if (AliDebugLevel()) dig->Print("");
                                
-                       dig->SetTriggerBit(kL1Jet, 0);
+                               dig->SetTriggerBit(kL1JetHigh + ithr, 0);
+                       }
                }
        }
-
-       if (AliDebugLevel() >= 999) data->Scan();
        
        // Now reset the electronics for a fresh start with next event
        Reset();
@@ -377,8 +430,8 @@ void AliEMCALTriggerElectronics::Reset()
 {
        // Reset
        
-       TIter NextTRU(fTRU);
-       while ( AliEMCALTriggerTRU *TRU = (AliEMCALTriggerTRU*)NextTRU() ) TRU->Reset();
+       TIter nextTRU(fTRU);
+       while ( AliEMCALTriggerTRU *TRU = (AliEMCALTriggerTRU*)nextTRU() ) TRU->Reset();
        
        fSTU->Reset();
 }