]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PMD/AliPMDDDLRawData.cxx
bug fixed for alignment, removed alignment database access from AliPMDUtility class
[u/mrichter/AliRoot.git] / PMD / AliPMDDDLRawData.cxx
index 5dcce4d616c8ef659d73edf721b96580d8bf6870..6c0a1b94a95f75f7d9fb8f2f4a4e28e30dd0f6a6 100644 (file)
@@ -103,32 +103,39 @@ void AliPMDDDLRawData::WritePMDRawData(TTree *treeD)
 
   Char_t filename[80];
 
+  // open the ddl file info to know the modules per DDL
+  TString ddlinfofileName(gSystem->Getenv("ALICE_ROOT"));
+  ddlinfofileName += "/PMD/PMD_ddl_info.dat";
+
+  ifstream infileddl;
+  infileddl.open(ddlinfofileName.Data(), ios::in); // ascii file
+  if(!infileddl) AliError("Could not read the ddl info file");
+
+
 
   Int_t mmodule = 0;
+  Int_t ddlno;
+  Int_t modno;
+  Int_t *modulenoddl = 0x0;
+
   for(Int_t iddl = 0; iddl < kDDL; iddl++)
     {
+      if (infileddl.eof()) break;
+      infileddl >> ddlno >> modulePerDDL;
+
+      if (modulePerDDL == 0) continue;
+
+      modulenoddl = new Int_t [modulePerDDL];
+      for (Int_t im = 0; im < modulePerDDL; im++)
+       {
+         infileddl >> modno;
+         modulenoddl[im] = modno;
+       }
+
       strcpy(filename,AliDAQ::DdlFileName("PMD",iddl));
       
       outfile = new AliFstream(filename);
       
-      if (iddl < 4)
-       {
-         modulePerDDL = 6;
-         mmodule = 6*iddl;
-       }
-      else if (iddl == 4)
-       {
-         modulePerDDL = 12;
-         mmodule = 24;
-       }
-      else if (iddl == 5)
-       {
-         modulePerDDL = 12;
-         mmodule = 30;
-       }
-
-
-
       // Write the Dummy Data Header into the file
       Int_t bHPosition = outfile->Tellp();
       outfile->WriteBuffer((char*)(&header),sizeof(header));
@@ -144,18 +151,16 @@ void AliPMDDDLRawData::WritePMDRawData(TTree *treeD)
 
       for(Int_t ium = 0; ium < modulePerDDL; ium++)
        {
-         if (iddl == 4 && ium == 6) mmodule = 42;
+         //if (iddl == 4 && ium == 6) mmodule = 42;
 
          // Extract energy deposition per cell and pack it
          // in a 32-bit word and returns all the total words
          // per one unit-module
          
-         GetUMDigitsData(treeD, mmodule, iddl, contentsBus, busPatch);
-         mmodule++;
+         mmodule = modulenoddl[ium];
+         GetUMDigitsData(treeD, mmodule, iddl, modulePerDDL, contentsBus, busPatch);
        }
 
-      
-
       Int_t ij = 0;
       Int_t dsp[10];
       Int_t dspBus[10];
@@ -205,6 +210,9 @@ void AliPMDDDLRawData::WritePMDRawData(TTree *treeD)
            }
        }
 
+      dspBlockARDL += 50;
+      dspBlockBRDL += 50;
+
       // Start writing the DDL file
 
       AliPMDBlockHeader blHeader;
@@ -358,25 +366,28 @@ void AliPMDDDLRawData::WritePMDRawData(TTree *treeD)
       delete outfile;
     } // DDL Loop over
 
-
+  delete [] modulenoddl;
+  infileddl.close();
 }
 //____________________________________________________________________________
 void AliPMDDDLRawData::GetUMDigitsData(TTree *treeD, Int_t imodule,
-                                      Int_t ddlno, Int_t *contentsBus,
+                                      Int_t ddlno, Int_t modulePerDDL,
+                                      Int_t *contentsBus,
                                       UInt_t busPatch[][1536])
 {
-  // Retrives digits data UnitModule by UnitModule
+  // Retrieves digits data UnitModule by UnitModule
 
-  UInt_t baseword;
-  UInt_t mcmno, chno;
-  UInt_t adc;
-  Int_t  det, smn, irow, icol;
-  Int_t  parity;
+  const Int_t kMaxBus = 51;
+
+  UInt_t baseword = 0;
+  UInt_t mcmno = 0, chno = 0;
+  UInt_t adc = 0;
+  Int_t  det = 0, smn = 0, irow = 0, icol = 0;
+  Int_t  parity = 0;
   
-  const Int_t kMaxBus = 51;   // BKN
-  Int_t totPatchBus, bPatchBus, ePatchBus;
-  Int_t ibus, totmcm, rows, cols, rowe, cole;
-  Int_t moduleno;
+  Int_t totPatchBus = 0, bPatchBus = 0, ePatchBus = 0;
+  Int_t ibus = 0, totmcm = 0, rows = 0, cols = 0, rowe = 0, cole = 0;
+  Int_t moduleno = 0;
   Int_t busno = 0;
   Int_t patchBusNo[kMaxBus], mcmperBus[kMaxBus];
   Int_t startRowBus[kMaxBus], startColBus[kMaxBus];
@@ -393,15 +404,7 @@ void AliPMDDDLRawData::GetUMDigitsData(TTree *treeD, Int_t imodule,
       endRowBus[i]   = -1;
       endColBus[i]   = -1;
     }
-  Int_t modulePerDDL = 0;
-  if (ddlno < 4)
-    {
-      modulePerDDL = 6;
-    }
-  else if (ddlno == 4 || ddlno == 5)
-    {
-      modulePerDDL = 12;
-    }
+
 
   TString fileName(gSystem->Getenv("ALICE_ROOT"));
 
@@ -439,6 +442,8 @@ void AliPMDDDLRawData::GetUMDigitsData(TTree *treeD, Int_t imodule,
     {
       infile >> moduleno;
       infile >> totPatchBus >> bPatchBus >> ePatchBus;
+      
+      if (totPatchBus == 0) continue;    // BKN
 
       if (moduleno == imodule)
        {
@@ -465,11 +470,44 @@ void AliPMDDDLRawData::GetUMDigitsData(TTree *treeD, Int_t imodule,
 
   infile.close();
 
+  // Read if some chains are off
+  TString rchainName(gSystem->Getenv("ALICE_ROOT"));
+  rchainName += "/PMD/PMD_removed_chains.dat";
+
+  ifstream rchainfile;
+  rchainfile.open(rchainName.Data(), ios::in); // ascii file
+  if(!rchainfile)AliError("Could not read the removed cahins file");
+
+  Int_t srowoff1[2][24], erowoff1[2][24];
+  Int_t scoloff1[2][24], ecoloff1[2][24];
+  Int_t srowoff2[2][24], erowoff2[2][24];
+  Int_t scoloff2[2][24], ecoloff2[2][24];
+
+  Int_t rows1 = 0, rowe1 = 0, cols1 = 0, cole1 = 0;
+  Int_t rows2 = 0, rowe2 = 0, cols2 = 0, cole2 = 0;
+
+  for (Int_t im = 0; im < 48; im++)
+    {
+      rchainfile >> det >> smn >> rows1 >> rowe1 >> cols1 >> cole1
+                >> rows2 >> rowe2 >> cols2 >> cole2;
+      
+      srowoff1[det][smn] = rows1;
+      erowoff1[det][smn] = rowe1;
+      scoloff1[det][smn] = cols1;
+      ecoloff1[det][smn] = cole1;
+      srowoff2[det][smn] = rows2;
+      erowoff2[det][smn] = rowe2;
+      scoloff2[det][smn] = cols2;
+      ecoloff2[det][smn] = cole2;
+    }
+
+  rchainfile.close();
+
   treeD->GetEntry(imodule); 
   Int_t nentries = fDigits->GetLast();
   Int_t totword = nentries+1;
 
-  AliPMDdigit *pmddigit;
+  AliPMDdigit *pmddigit = 0x0;
 
   for (Int_t ient = 0; ient < totword; ient++)
     {
@@ -482,8 +520,30 @@ void AliPMDDDLRawData::GetUMDigitsData(TTree *treeD, Int_t imodule,
       adc    = (UInt_t) pmddigit->GetADC();
 
       TransformS2H(smn,irow,icol);
+      
+      // remove the non-existence channels
+
+      //printf("%d %d %d %d\n",det,smn,irow,icol);
+      //printf("--- %d   %d   %d   %d\n",srowoff[det][smn],erowoff[det][smn],
+      //     scoloff[det][smn],ecoloff[det][smn]);
+
+      if (irow >= srowoff1[det][smn] && irow <= erowoff1[det][smn])
+       {
+         if (icol >= scoloff1[det][smn] && icol <= ecoloff1[det][smn])
+           {
+             continue;
+           }
+       }
+      if (irow >= srowoff2[det][smn] && irow <= erowoff2[det][smn])
+       {
+         if (icol >= scoloff2[det][smn] && icol <= ecoloff2[det][smn])
+           {
+             continue;
+           }
+       }
 
-      GetMCMCh(ddlno, smn, irow, icol, beginPatchBus, endPatchBus,
+
+      GetMCMCh(imodule, irow, icol, beginPatchBus, endPatchBus,
               mcmperBus, startRowBus, startColBus,
               endRowBus, endColBus, busno, mcmno, chno);
 
@@ -535,7 +595,7 @@ void AliPMDDDLRawData::TransformS2H(Int_t smn, Int_t &irow, Int_t &icol)
 
 //____________________________________________________________________________
 
-void AliPMDDDLRawData::GetMCMCh(Int_t ddlno, Int_t smn, Int_t row, Int_t col,
+void AliPMDDDLRawData::GetMCMCh(Int_t imodule, Int_t row, Int_t col,
                                Int_t beginPatchBus, Int_t endPatchBus,
                                Int_t *mcmperBus,
                                Int_t *startRowBus, Int_t *startColBus,
@@ -657,18 +717,22 @@ void AliPMDDDLRawData::GetMCMCh(Int_t ddlno, Int_t smn, Int_t row, Int_t col,
     
     
     for (Int_t i = 0; i < 16; i++)
-    {
+      {
        for (Int_t j = 0; j < 4; j++)
-       {
-           if (ddlno == 0 || ddlno == 1) iCh[i][j] = kChDdl01[i][j];
-           if (ddlno == 2 || ddlno == 3) iCh[i][j] = kChDdl23[i][j];
+         {
            
-           if (ddlno == 4 && smn < 6)                iCh[i][j] = kChDdl41[i][j];
-           if (ddlno == 4 && (smn >= 18 && smn < 24))iCh[i][j] = kChDdl42[i][j];
-           if (ddlno == 5 && (smn >= 12 && smn < 18))iCh[i][j] = kChDdl51[i][j];
-           if (ddlno == 5 && (smn >=  6 && smn < 12))iCh[i][j] = kChDdl52[i][j];
-       }
-    }
+           if(imodule < 6)                    iCh[i][j] = kChDdl01[i][j];
+           if(imodule >= 6 && imodule <= 11)  iCh[i][j] = kChDdl01[i][j];
+           if(imodule >= 12 && imodule <= 17) iCh[i][j] = kChDdl23[i][j];
+           if(imodule >= 18 && imodule <= 23) iCh[i][j] = kChDdl23[i][j];
+
+           if(imodule >= 24 && imodule <= 29) iCh[i][j] = kChDdl41[i][j];
+           if(imodule >= 42 && imodule <= 47) iCh[i][j] = kChDdl42[i][j];
+           if(imodule >= 36 && imodule <= 41) iCh[i][j] = kChDdl51[i][j];
+           if(imodule >= 30 && imodule <= 35) iCh[i][j] = kChDdl52[i][j];
+           
+         }
+      }
 
 
   Int_t irownew = row%16;
@@ -684,30 +748,35 @@ void AliPMDDDLRawData::GetMCMCh(Int_t ddlno, Int_t smn, Int_t row, Int_t col,
       Int_t scol = startColBus[ibus];
       Int_t ecol = endColBus[ibus];
       Int_t tmcm = mcmperBus[ibus];
+
       if ((row >= srow && row <= erow) && (col >= scol && col <= ecol))
        {
          busno = ibus;
          
          // Find out the MCM Number
          //
-         
-         if (ddlno == 0 || ddlno == 1)
+
+         if (imodule < 6)                  mcmno = (col-scol)/4 + 1;
+         if (imodule >= 6 && imodule < 12) mcmno = (col-scol)/4 + 1;
+
+         if (imodule >= 12 && imodule < 18)
            {
-             // PRE plane, SU Mod = 0, 1
-             mcmno = (col-scol)/4 + 1;
-             
-           }
-         else if (ddlno == 2 || ddlno == 3)
+             icolnew = (col - scol)/4;
+             mcmno = tmcm - icolnew;
+           }         
+         if (imodule >= 18 && imodule < 24)
            {
-             // PRE plane,  SU Mod = 2, 3
              icolnew = (col - scol)/4;
              mcmno = tmcm - icolnew;
-           }
-         else if (ddlno == 4 )
+           }         
+
+         // DDL = 4
+         if (imodule >= 24 && imodule < 30)
            {
-             // CPV plane,  SU Mod = 0, 3 : ddl = 4
-             
-             if(ibus <= 18)
+
+             //if (tmcm == 24)
+             Int_t rowdiff = endRowBus[ibus] - startRowBus[ibus];
+             if(rowdiff > 16)
                {
                  Int_t midrow = srow + 16;
                  if(row >= srow && row < midrow)
@@ -715,38 +784,46 @@ void AliPMDDDLRawData::GetMCMCh(Int_t ddlno, Int_t smn, Int_t row, Int_t col,
                      mcmno = 12 + (col-scol)/4 + 1;
                    }
                  else if(row >= midrow && row <= erow)
-                 
+                   
                    {
                      mcmno = (col-scol)/4 + 1;
                    }
                }
-             
-             else if (ibus > 18)
+             else if (rowdiff < 16)
                {
-                 Int_t rowdiff = endRowBus[ibus] - startRowBus[ibus];
-                 if(rowdiff > 16)
+                 mcmno = (col-scol)/4 + 1;
+               }
+           
+           }         
+         if (imodule >= 42 && imodule < 48)
+           {
+             Int_t rowdiff = endRowBus[ibus] - startRowBus[ibus];
+             if(rowdiff > 16)
+               {
+                 Int_t midrow = srow + 16;
+                 if (row >= midrow && row <= erow)
                    {
-                     Int_t midrow = srow + 16;
-                     if (row >= midrow && row <= erow)
-                       {
-                         mcmno = 12 + (ecol -col)/4 + 1;
-                       }
-                     else if (row >= srow && row < midrow)
-                       {
-                         mcmno = (ecol - col)/4 + 1;
-                       }
+                     mcmno = 12 + (ecol -col)/4 + 1;
                    }
-                 else if (rowdiff < 16)
+                 else if (row >= srow && row < midrow)
                    {
                      mcmno = (ecol - col)/4 + 1;
                    }
                }
-           }
-         else if ( ddlno == 5)
+             else if (rowdiff < 16)
+               {
+                 mcmno = (ecol - col)/4 + 1;
+               }
+           }         
+
+         // DDL = 5
+         if (imodule >= 30 && imodule < 36)
            {
              // CPV plane,  SU Mod = 1, 2 : ddl = 5
              
-             if(ibus <= 18)
+             //if(tmcm == 24)
+             Int_t rowdiff = endRowBus[ibus] - startRowBus[ibus];
+             if(rowdiff > 16)
                {
                  Int_t midrow = srow + 16;
                  if(row >= srow && row < midrow)
@@ -758,28 +835,33 @@ void AliPMDDDLRawData::GetMCMCh(Int_t ddlno, Int_t smn, Int_t row, Int_t col,
                      mcmno = (col-scol)/4 + 1;
                    }
                }
+             else if(rowdiff < 16)
+               {
+                 mcmno = (col-scol)/4 + 1;
+               }
              
-             else if (ibus > 18)
+           }
+         if (imodule >= 36 && imodule < 42)
+           {
+             Int_t rowdiff = endRowBus[ibus] - startRowBus[ibus];
+             if(rowdiff > 16)
                {
-                 Int_t rowdiff = endRowBus[ibus] - startRowBus[ibus];
-                 if(rowdiff > 16)
+                 Int_t midrow = srow + 16;
+                 if (row >= midrow && row <= erow)
                    {
-                     Int_t midrow = srow + 16;
-                     if (row >= midrow && row <= erow)
-                       {
-                         mcmno = 12 + (ecol - col)/4 + 1;
-                       }
-                     else if (row >= srow && row < midrow)
-                       {
-                         mcmno = (ecol - col)/4 + 1;
-                       }
+                     mcmno = 12 + (ecol - col)/4 + 1;
                    }
-                 else if (rowdiff < 16)
+                 else if (row >= srow && row < midrow)
                    {
                      mcmno = (ecol - col)/4 + 1;
                    }
                }
+             else if (rowdiff < 16)
+               {
+                 mcmno = (ecol - col)/4 + 1;
+               }
            }
+
        }
     }
 }