]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/MUONGenerateBusPatch.C
Updated list of MUON libraries
[u/mrichter/AliRoot.git] / MUON / MUONGenerateBusPatch.C
index abddfa45e58d80ba1730e9eb7ead919401995c4e..5a9685efb3351c488a99b2b6915062a20646202b 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
+// $Id$
+
+#if !defined(__CINT__) || defined(__MAKECINT__)
+// ROOT includes
+#include <Riostream.h>
+#include <TROOT.h>
+#include <TSystem.h>
+#include <TString.h>
+
+// MUON includes
+#include "AliMpBusPatch.h"
+
+#endif
+
+// Generates buspatch id and DDL id for given detection element id
+// station 1 & 2 assuming 24 buspatches per quadrant
+// station345, reading from DetElemIdToSlatType.dat file and calculates
+// the number of bus patches per slat (and also number of Translator and Bridge Boards).
+// Generates an output file DetElemIdToBusPatch.dat.out, preserve from overwriting
+// (Ch. Finck, July 05)
+// (Nov. 05, added DDL)
+// (June 06, correction for St123)
+// (Feb. 07, add 1st manu list for St12 (starting on NB !) and new ddl sharing for station 3)
+
 
 void MUONGenerateBusPatch()
 {
-  // Generates buspatch id and DDL id for given detection element id
-  // station 1 & 2 assuming 24 buspatches per quadrant
-  // station345, reading from DetElemIdToSlatType.dat file and calculates
-  // the number of bus patches per slat (and also number of Translator and Bridge Boards).
-  // Generates an output file DetElemIdToBusPatch.dat.out, preserve from overwriting
-  // (Ch. Finck, July 05)
-  // (Nov. 05: added DDL)
 
   TString dirPath2 = gSystem->Getenv("ALICE_ROOT");
   dirPath2 += "/MUON/mapping/data/"; 
@@ -39,10 +56,9 @@ void MUONGenerateBusPatch()
   Int_t idDE;
   Int_t i;
   Int_t cursor = 0;
-  Int_t begin[800];
-  Int_t end[800];
+  Int_t begin[900];
+  Int_t end[900];
   Int_t nbBusPatch;
-  Int_t listDE[800];
   Int_t nbTB = 0;
   Int_t nbBB = 0;
   Int_t idSt12[] = {100, 101, 102, 103, 
@@ -50,34 +66,92 @@ void MUONGenerateBusPatch()
                    300, 301, 302, 303,
                    400, 401, 402, 403};
 
-  Int_t idSt3swp = 9; // half chamber for DDL on horizontal
+  Char_t manuListSt1[] 
+      = " 1,27,53,79,105,131,157,183,201,214,224,232,1025,1051,1077,1103,1129,1155,1181,1207,1225,1238,1249,1257";
+
+  Char_t manuListSt2[] 
+      = " 1,27,53,79,105,131,157,183,201,214,226,246,1025,1051,1077,1103,1129,1155,1181,1207,1225,1238,1251,1269";
+
+  Int_t idCh5swp1 = 5; // 1/4 chamber for DDL on horizontal
+  Int_t idCh5swp2 = 10; // 1/4 chamber for DDL on horizontal
+  Int_t idCh5swp3 = 14; // 1/4 chamber for DDL on horizontal
+
+  Int_t idCh6swp1 = 5; // 1/4 chamber for DDL on horizontal
+  Int_t idCh6swp2 = 9; // 1/4 chamber for DDL on horizontal
+  Int_t idCh6swp3 = 14; // 1/4 chamber for DDL on horizontal
+
   Int_t idSt45swp1 = 7; // half chamber for DDL in vertical cutting twice the official numbering
   Int_t idSt45swp2 = 20;
 
   Int_t iDDL = 0;
   // station 1 & 2
   nbBusPatch = 24;
+  Int_t nbHalfBusPatch =  nbBusPatch/2;
   cout << "#DE BusPatch DDL SlatName" << endl;
-  out << "#DE BusPatch DDL " << endl;
+  out << "#DE BusPatch DDL  1st manu in buspatch" << endl;
 
   for (Int_t j = 0; j < 16; j++) {
 
     idDE = idSt12[j];
     if (idDE % 100 == 0) {
-      begin[cursor] = idDE;
+      iDDL++;
+      begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
       cout << "# Chamber " << idDE/100 << endl;
       out  << "# Chamber " << idDE/100 << endl;
     }
-    if (idDE % 2 == 0) iDDL++;
+    if (idDE % 100 == 1) { 
+      iDDL++;
+      begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
+    }
+   
+    if (idDE % 100 == 3) {
+      iDDL--;
+      begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1) + nbBusPatch;
+    }
+
     end[cursor]     = begin[cursor] + nbBusPatch - 1;
-    begin[++cursor] = end[cursor] + 1;
+    ++cursor; // it seems that vec[++i] does not work in Cint
+    begin[cursor] = end[cursor-1] + 1;
+
+    cout << idDE << " " << begin[cursor-1] + nbHalfBusPatch << "-" <<end[cursor-1] << ";" <<
+       begin[cursor-1] << "-" << end[cursor-1] - nbHalfBusPatch << " " << iDDL-1 << endl;
+
+    if (idDE < 300 )
+       out << idDE  << " " << begin[cursor-1] + nbHalfBusPatch << "-" <<end[cursor-1] << ";" <<
+           begin[cursor-1]     << "-" << end[cursor-1] - nbHalfBusPatch << " " << iDDL-1 <<
+           manuListSt1 << endl;
+    else
+       out << idDE  << " " << begin[cursor-1] + nbHalfBusPatch << "-" <<end[cursor-1] << ";" <<
+           begin[cursor-1]     << "-" << end[cursor-1] - nbHalfBusPatch << " " <<  iDDL-1 <<
+           manuListSt2  << endl;
+    if (idDE % 100 == 3) iDDL++;
 
-    cout << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1]  <<" " << iDDL << endl;
-    out << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1] <<" " << iDDL  <<endl;
   }
   
   // station 345
   nbBusPatch = 0;
+  Int_t nbBusSt3Tot1 = 0;
+  Int_t nbBusSt3Tot2 = 0;
+  Int_t nbBusSt3Tot3 = 0;
+  Int_t nbBusSt3Tot4 = 0;
+
+  Int_t nbBusSt3Swap1 = 0;
+  Int_t nbBusSt3Swap2 = 0;
+  Int_t nbBusSt3Swap3 = 0;
+  Int_t nbBusSt3Swap4 = 0;
+
+  Int_t iDDLSt3Swap1 = 0;
+  Int_t iDDLSt3Swap2 = 0;
+  Int_t iDDLSt3Swap3 = 0;
+
+  Int_t nbBusSt45Tot = 0;
+  Int_t nbBusSt45Swap = 0;
+
+  Int_t nbBus500 = 4; // number of buspatch in DE 500
+  Int_t nbDDL500 = 11; // DDL number for DE 500
+  Int_t offsetBus500 = 13; // number of buspatches in DDL 11 before DE 500
+
+  // reads from file
   while ( in.getline(line,80) ) {
 
     if ( line[0] == '#' || line[0] == '\0' ) continue;
@@ -104,35 +178,153 @@ void MUONGenerateBusPatch()
     if (i == 6) nbBB += 8;
 
     nbTB += nbBusPatch;
-    if (nameSlat[len-1] == '1')
-      nbBB += 4;
+    if (nameSlat[len-1] == '1') {
+      nbTB += 2;
+      nbBusPatch+=2;
+    }
     if (nameSlat[len-1] == '2' || nameSlat[len-1] == '3') {
       nbTB += 1;
       nbBusPatch++;
     }
-    listDE[cursor] = idDE;
+
+    // station 3
+    // for buspatch length reasons, one ddl connects one 1/4 of two chambers
+    // really messy isn't it ? 
+    // much more with the new DDL sharing for station 3
+
+    if (idDE < 700 ) {
+
+      if (idDE == 501) {
+       iDDL++;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
+       nbBusSt3Tot1 = 0; 
+
+      }
+      if (idDE % 100 == 0) {
+       cout << "# Chamber " << idDE/100 << endl;
+       out  << "# Chamber " << idDE/100 << endl;
+      }
+
+      // taking into account that idDE = 500 is connected to ddl = 11;
+      if (idDE == 500) {
+       cout << idDE << " " << AliMpBusPatch::GetGlobalBusID(offsetBus500, nbDDL500)<<"-"
+            << AliMpBusPatch::GetGlobalBusID(offsetBus500, nbDDL500) + nbBus500 -1
+            << " " << nbDDL500 << " " <<nameSlat <<endl;
+
+               out << idDE << " " << AliMpBusPatch::GetGlobalBusID(offsetBus500, nbDDL500)<<"-"
+           << AliMpBusPatch::GetGlobalBusID(offsetBus500, nbDDL500) + nbBus500 -1
+            << " " << nbDDL500 <<endl;
+       continue;
+      }
+      nbBusSt3Tot1 +=  nbBusPatch;
+
+      // second 1/4 for chamber 5
+      if (idDE == 500+idCh5swp1) {
+       iDDLSt3Swap1 =  iDDL++;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
+       nbBusSt3Swap1 = nbBusSt3Tot1 - nbBusPatch;
+       nbBusSt3Tot1 = 0;
+       nbBusSt3Tot2 = 0;
+      }
+
+      // first 1/4 chamber 6
+      if (idDE == 600) {
+       iDDL = iDDLSt3Swap1;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(nbBusSt3Swap1, iDDL-1);
+      }
+      // third 1/4 for chamber 5
+      if (idDE == 500+idCh5swp2) {
+       iDDL = iDDLSt3Swap1+1;
+       iDDLSt3Swap2 =  iDDL++;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
+       nbBusSt3Swap2 = nbBusSt3Tot2;
+       nbBusSt3Tot2 = 0;
+       nbBusSt3Tot3 = 0;
+      }
+      nbBusSt3Tot2 +=  nbBusPatch;
+
+      // second 1/4 chamber 6
+     if (idDE == 600 +idCh6swp1) {
+       iDDL = iDDLSt3Swap2;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(nbBusSt3Swap2, iDDL-1);
+      }
+    
+     // fourth 1/4 chamber 5
+     if (idDE == 500+idCh5swp3) {
+       iDDL = iDDLSt3Swap2+1;
+       iDDLSt3Swap3 =  iDDL++;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
+       nbBusSt3Swap3 = nbBusSt3Tot3;
+       nbBusSt3Tot2 = 0;
+       nbBusSt3Tot3 = 0;
+       nbBusSt3Tot4 = 0;
+      }
+      nbBusSt3Tot3 +=  nbBusPatch;
+
+     //third 1/4 chamber 6
+     if (idDE == 600)
+       nbBusSt3Swap4 = nbBusSt3Tot4;
+
+     if (idDE == 600 +idCh6swp2) {
+       iDDL = iDDLSt3Swap3;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(nbBusSt3Swap3, iDDL-1);
+       nbBusSt3Tot4 +=  nbBusPatch;
+      }
+      nbBusSt3Tot4 +=  nbBusPatch;
+
+     // fourth 1/4 chamber 6
+    if (idDE == 600 +idCh6swp3) {
+       iDDL = iDDLSt3Swap3+1;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(nbBusSt3Swap4 + nbBus500, iDDL-1);
+      }
+
+      end[cursor]     = begin[cursor] + nbBusPatch - 1;
+      ++cursor;
+      begin[cursor] = end[cursor-1] + 1;
+
+      cout << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1] << " " << iDDL-1 << " " <<nameSlat <<endl;
+      out << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1] <<" " << iDDL-1 <<endl;
+    }
+    
+    // station 4 & 5
+    // back to normal one ddl connects one 1/2 chamber
+    // finally !
+    if (idDE == 700) {
+      iDDL = ((idDE-1)/100)*2;
+    }
+    if (idDE >= 700) {
+
     if (idDE % 100 == 0) {
+      nbBusSt45Tot = 0;
       iDDL++;
       if (idDE >=800)
        iDDL++;
-      begin[cursor] = idDE;
+      begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
       cout << "# Chamber " << idDE/100 << endl;
       out  << "# Chamber " << idDE/100 << endl;
     }
-    if (idDE == 500+idSt3swp || idDE == 600+idSt3swp )
-       iDDL++;
 
-    if (idDE == 700+idSt45swp1 || idDE == 800+idSt45swp1 || idDE == 900+idSt45swp1 || idDE == 1000+idSt45swp1 )
-       iDDL++;
+      nbBusSt45Tot += nbBusPatch;
 
-    if (idDE == 700+idSt45swp2 || idDE == 800+idSt45swp2 || idDE == 900+idSt45swp2 || idDE == 1000+idSt45swp2 )
+      if (idDE == 700+idSt45swp1 || idDE == 800+idSt45swp1 || idDE == 900+idSt45swp1 || idDE == 1000+idSt45swp1 ) {
+       iDDL++;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(0, iDDL-1);
+       nbBusSt45Swap = nbBusSt45Tot - nbBusPatch;
+       nbBusSt45Tot = 0;
+      }
+      if (idDE == 700+idSt45swp2 || idDE == 800+idSt45swp2 || idDE == 900+idSt45swp2 || idDE == 1000+idSt45swp2 ) {
        iDDL--;
+       begin[cursor] = AliMpBusPatch::GetGlobalBusID(nbBusSt45Swap, iDDL-1);
+      }
 
-    end[cursor]     = begin[cursor] + nbBusPatch - 1;
-    begin[++cursor] = end[cursor] + 1;
+      end[cursor]     = begin[cursor] + nbBusPatch - 1;
+      ++cursor;
+      begin[cursor] = end[cursor-1] + 1;
+
+      cout << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1] << " " << iDDL-1 << " " <<nameSlat <<endl;
+      out << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1] <<" " << iDDL-1 <<endl;
+    }
 
-    cout << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1] << " " << iDDL << " " <<nameSlat <<endl;
-    out << idDE << " " << begin[cursor-1]<<"-"<<end[cursor-1] <<" " << iDDL <<endl;
   }
   printf(" Slat: number of TB %d and BB %d\n", nbTB, nbBB);
   in.close();