]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALTriggerSTU.cxx
code cleanup: renaming functions; adding prototype code for later development; no...
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTriggerSTU.cxx
index 943aa6dba74d0747e8bcd374901b5145780d393b..1727f3f102e5536819db408d0af5c6dcb6796b75 100644 (file)
@@ -45,39 +45,33 @@ ClassImp(AliEMCALTriggerSTU)
 
 //_______________
 AliEMCALTriggerSTU::AliEMCALTriggerSTU() : AliEMCALTriggerBoard()
-,fGammaTh(0)
-,fJetTh(0)
 ,fDCSConfig(0x0)
 {
-       //
+       // Ctor
+       fGammaTh[0] = fGammaTh[1] = 0;
+       fJetTh[0] = fJetTh[1] = 0;
 }
 
 //_______________
 AliEMCALTriggerSTU::AliEMCALTriggerSTU(AliEMCALTriggerSTUDCSConfig *dcsConf, const TVector2& RS) : AliEMCALTriggerBoard(RS)
-,fGammaTh(0)
-,fJetTh(0)
 ,fDCSConfig(dcsConf)
 {
-       //
+       // Ctor
+       fGammaTh[0] = fGammaTh[1] = 0;
+       fJetTh[0] = fJetTh[1] = 0;      
 }
 
 //_______________
 AliEMCALTriggerSTU::~AliEMCALTriggerSTU()
 {
-       //
-}
-
-//_______________
-Int_t AliEMCALTriggerSTU::GetRawData() const
-{
-       //
-       return fDCSConfig->GetRawData();
+       // Dtor
 }
 
 //_______________
 void AliEMCALTriggerSTU::Build( TString& str, Int_t iTRU, Int_t** M, const TVector2* rSize )
 {
-       //
+       // Build
+       
        str.ToLower();
        
        Int_t ix = (iTRU % 2) ? 24 : 0;
@@ -98,25 +92,30 @@ void AliEMCALTriggerSTU::Build( TString& str, Int_t iTRU, Int_t** M, const TVect
        {
                AliError("Operation not allowed: STU won't be configured properly!");
        }
-       
-       for (Int_t i=0; i<rSize->X(); i++)
-               for (Int_t j=0; j<rSize->Y(); j++) v[i + ix][j + iy * 4] = M[i][j];
+  
+  if(v){       
+    for (Int_t i=0; i<rSize->X(); i++)
+      for (Int_t j=0; j<rSize->Y(); j++) v[i + ix][j + iy * 4] = M[i][j];
+  }
 }
 
 //_______________
-void AliEMCALTriggerSTU::L1(TriggerType_t type)
+void AliEMCALTriggerSTU::L1(int type)
 {
-       //
+       // L1
+       
        TVector2 s1, s2, s3, s4;
        fDCSConfig->GetSegmentation(s1, s2, s3, s4);
        
        switch (type)
        {
-               case kL1Gamma:
+               case kL1GammaHigh:
+               case kL1GammaLow:
                        SetSubRegionSize(s1); 
                        SetPatchSize(s2);
                        break;
-               case kL1Jet:
+               case kL1JetHigh:
+               case kL1JetLow:
                        SetSubRegionSize(s3);
                        SetPatchSize(s4);
                        break;
@@ -126,180 +125,77 @@ void AliEMCALTriggerSTU::L1(TriggerType_t type)
                        break;
        }
        
-       SlidingWindow(type, GetThreshold(type));        
+       SlidingWindow(GetThreshold(type));      
+       AliDebug(999, Form("STU type %d sliding window w/ thr %d found %d patches", type, GetThreshold(type), fPatches->GetEntriesFast()));
 }
 
-//________________
-void AliEMCALTriggerSTU::PrintADC( TriggerType_t type, TVector2& pos, TVector2& idx )
+//___________
+void AliEMCALTriggerSTU::ComputeThFromV0(int type, const Int_t M[])
 {
-       //
-       Int_t ix = (Int_t) (( pos.X() + fPatchSize->X() ) * fSubRegionSize->X());
-       
-       Int_t iy = (Int_t) (( pos.Y() + fPatchSize->Y() ) * fSubRegionSize->Y());
+       // Compute threshold from V0
        
-       TString subRegionADC[] = {"0->15", "16->31", "32->47", "48->63", "64->79", "80->95"};
+       Short_t P[3] = {0};
        
-       switch ( type )
+       switch (type)
        {
-               case kL1Gamma:
-               {
-                       Int_t iTRU = ( (ix-1) < 24 ) ? 31 - int(pos.Y() / 4) : 15 - int(pos.Y() / 4);
-                       
-                       printf("TRU #%d row #%d col #%d fastor: ",iTRU,int(idx.Y()),int(idx.X()));
-                       
-                       for (Int_t i=(Int_t)(pos.X() * fSubRegionSize->X());i<ix;i++) 
-                       {
-                         for (Int_t j=(Int_t) (pos.Y() * fSubRegionSize->Y());j<iy;j++) 
-                               {
-                                       Int_t jtru = ( i < 24 ) ? 31 - j / 4 : 15 - j / 4;
-                                       printf("TRU#%d_%d ",jtru,fMap[i][j]);
-                               }
-                       }
-                       
-                       cout << endl;
-               }       
-               break;
-               case kL1Jet:
-               {
-                       //Int_t jTRU = ( (ix-1) < 24 ) ? 31 - (iy-1) / 4 : 15 - (iy-1) / 4;
-                       
-                       printf("jet found at row : %d and col : %d",int(idx.X()),int(idx.Y()));
-                       
-                       Char_t vPair[100];
-                       Int_t nSubRegion = 0;
-                       
-                       for (Int_t i=(Int_t)(pos.X() * fSubRegionSize->X());i<ix;i++) 
-                       {
-                         for (Int_t j=(Int_t)(pos.Y() * fSubRegionSize->Y());j<iy;j++) 
-                               {
-                                       Int_t itru = ( i < 24 ) ? 31 - j / 4 : 15 - j / 4;
-                                       
-                                       Int_t idSR = fMap[i][j]/16;
-                                       
-                                       Char_t value = ((itru << 3) & 0xF8) | (idSR & 0x7);
-                                       
-                                       Bool_t isFound = kFALSE;
-                                       
-                                       for (Int_t k=0;k<nSubRegion && nSubRegion;k++)
-                                       {
-                                               if (vPair[k] == value) isFound = kTRUE;
-                                       }
-                                       
-                                       if (!isFound) 
-                                       {       
-                                               nSubRegion++;
-                                               
-                                               vPair[nSubRegion-1] = value;
-                                       }
-                               }
-                       }
-                       
-                       cout << " fastor:"; 
-                       for (Int_t i=0;i<nSubRegion;i++)
-                       {
-                               cout << " TRU#" << ((vPair[i] & 0xF8) >> 3) << "_" << subRegionADC[(vPair[i] & 0x7)];
-                       }
-               
-                       cout << endl;
-               }
-               break;
+               case kL1GammaHigh:
+                       P[0] = fDCSConfig->GetG(0, 0);
+                       P[1] = fDCSConfig->GetG(1, 0);
+                       P[2] = fDCSConfig->GetG(2, 0);                  
+                       break;
+               case kL1GammaLow:
+                       P[0] = fDCSConfig->GetG(0, 1);
+                       P[1] = fDCSConfig->GetG(1, 1);
+                       P[2] = fDCSConfig->GetG(2, 1);                  
+                       break;
+               case kL1JetHigh:
+                       P[0] = fDCSConfig->GetJ(0, 0);
+                       P[1] = fDCSConfig->GetJ(1, 0);
+                       P[2] = fDCSConfig->GetJ(2, 0);                  
+                       break;
+               case kL1JetLow:
+                       P[0] = fDCSConfig->GetJ(0, 1);
+                       P[1] = fDCSConfig->GetJ(1, 1);
+                       P[2] = fDCSConfig->GetJ(2, 1);                  
+                       break;
                default:
-                       AliError("AliEMCALTriggerSTU::PrintADC(): Undefined trigger type, pls check!");
+                       AliError("AliEMCALTriggerSTU::ComputeThFromV0(): Undefined trigger type, pls check!");
+                       return;
        }
-}
-
-//___________
-void AliEMCALTriggerSTU::PatchGenerator(const TClonesArray* lpos, Int_t val)
-{
-       ZeroRegion();
-       
-       Int_t vTRU[32][24][4] ;//= {0};
-       
-       for (Int_t i = 0; i < 32; i++) 
-               for (Int_t j = 0; j < 24; j++) 
-                       for (Int_t k = 0; k < 4; k++) vTRU[i][j][k]=0;
        
+       ULong64_t v0sum = M[0] + M[1];
        
-       AliWarning("AliEMCALTriggerSTU::PatchGenerator(): STU region has been reset!");
+       ULong64_t sqrV0 = v0sum * v0sum;
        
-       // Fill the patch FOR at 'pos' w/ value 'val'
+       sqrV0 *= P[0];  
        
-       TIter NextPosition( lpos );
+       sqrV0 >>= 32;
        
-       while ( TVector2 *pos = (TVector2*)NextPosition() )
-       {
-               pos->Print();
-               for (Int_t i=(Int_t)(pos->X()*fSubRegionSize->X()); i<int((pos->X()+fPatchSize->X())*fSubRegionSize->X()); i++)
-                 for (Int_t j=(Int_t)(pos->Y()*fSubRegionSize->Y()); j<int((pos->Y()+fPatchSize->Y())*fSubRegionSize->Y()); j++) 
-                               fRegion[i][j] = val;
-       }
+       v0sum *= P[1];
        
-       for (Int_t i=0; i<2; i++)
-       {
-               for (Int_t j=0; j<16; j++)
-               {
-                       Int_t iTRU = ( !i ) ? 31 - j : 15 - j;
-                       
-                       for (Int_t i1=24*i; i1<24*(i+1); i1++)
-                       {
-                               for (Int_t j1=4*j; j1<4*(j+1); j1++)
-                               {
-                                       vTRU[iTRU][i1%24][j1%4] = fRegion[i1][j1];
-                               }
-                       }
-               }
-       }
+       v0sum >>= 16;
        
-       gSystem->Exec(Form("mkdir -p GP"));
-
-       for (Int_t i=0; i<32; i++)
-       {
-               std::ofstream outfile(Form("GP/data_TRU%d.txt",i),std::ios::trunc);
-       
-               for (Int_t j=0;j<96;j++) 
-               {
-                       Int_t ietam, iphim;
-                       
-                       if ( int(i / 16) )
-                       {
-                               ietam =      j/4;
-                               iphim =  3 - j%4;
-                       }
-                       else
-                       {                                       
-                               ietam = 23 - j/4;
-                               iphim =      j%4;
-                       }
-                       
-                       outfile << vTRU[i][ietam][iphim] << endl;
-               }
-       
-               outfile.close();
-       }
+       SetThreshold(type, (UShort_t)(sqrV0 + v0sum + P[2]));
 }
 
 //___________
-void AliEMCALTriggerSTU::ComputeThFromV0(const Int_t M[])
+void AliEMCALTriggerSTU::SetThreshold(int type, Int_t v)
 {
-       //
-       if (!(M[0] + M[1])) AliWarning("V0A + V0C is null!"); // 0/1: V0C/V0A
-
-       
-       fGammaTh = fDCSConfig->GetGA()*(M[0] + M[1])*(M[0] + M[1]) + fDCSConfig->GetGB()*(M[0] + M[1]) + fDCSConfig->GetGC();
+       // Set threshold
        
-       fJetTh   = fDCSConfig->GetJA()*(M[0] + M[1])*(M[0] + M[1]) + fDCSConfig->GetJB()*(M[0] + M[1]) + fDCSConfig->GetJC();   
-}
-
-//___________
-void AliEMCALTriggerSTU::SetThreshold(TriggerType_t type, Int_t v)
-{
        switch (type)
        {
-               case kL1Gamma:
-                       fGammaTh = v;
+               case kL1GammaHigh:
+                       fGammaTh[0] = v;
+                       break;
+               case kL1GammaLow:
+                       fGammaTh[1] = v;
                        break;
-               case kL1Jet:
-                       fJetTh = v;             
+               case kL1JetHigh:
+                       fJetTh[0] = v;          
+                       break;
+               case kL1JetLow:
+                       fJetTh[1] = v;          
                        break;
                default:
                        AliError("AliEMCALTriggerSTU::SetThreshold(): Undefined trigger type, pls check!");
@@ -307,19 +203,24 @@ void AliEMCALTriggerSTU::SetThreshold(TriggerType_t type, Int_t v)
 }
 
 //___________
-Int_t AliEMCALTriggerSTU::GetThreshold(TriggerType_t type)
+Int_t AliEMCALTriggerSTU::GetThreshold(int type)
 {      
        // Compute threshold FIXME: need an access to the OCDB
        // to get f(V0) parameters depending on trigger type
        
-       
        switch (type)
        {
-               case kL1Gamma:
-                       return fGammaTh;
+               case kL1GammaHigh:
+                       return fGammaTh[0];
+                       break;
+               case kL1GammaLow:
+                       return fGammaTh[1];
                        break;
-               case kL1Jet:
-                       return fJetTh;          
+               case kL1JetHigh:
+                       return fJetTh[0];               
+                       break;
+               case kL1JetLow:
+                       return fJetTh[1];               
                        break;
                default:
                        AliError("AliEMCALTriggerSTU::GetThreshold(): Undefined trigger type, pls check!");
@@ -331,5 +232,7 @@ Int_t AliEMCALTriggerSTU::GetThreshold(TriggerType_t type)
 //__________
 void AliEMCALTriggerSTU::Reset()
 {
+       // Reset
+       
        fPatches->Delete();
 }