]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/MUONdigit.C
Double inclusion of AliResponse removed.
[u/mrichter/AliRoot.git] / MUON / MUONdigit.C
index a1e3e8a14e190640a63db46051a799f87d1bc1c1..da09f6ab5f72fa942482127b55fff99484947b12 100644 (file)
@@ -1,13 +1,48 @@
 #include "iostream.h"
 
-void MUONdigit (Int_t evNumber1=0,Int_t evNumber2=0,Int_t nsignal  =25
+void MUONdigit (Int_t evNumber1=0, Int_t evNumber2=9, Int_t ibg=1, Int_t bgr=10
 {
-/////////////////////////////////////////////////////////////////////////
-//   This macro is a small example of a ROOT macro
-//   illustrating how to read the output of GALICE
-//   and do some analysis.
-//   
-/////////////////////////////////////////////////////////////////////////
+  //////////////////////////////////////
+  //                                  //
+  // ROOT macro for ALICE Dimuon Arm: //
+  // Digitization                     //
+  //                                  //
+  //////////////////////////////////////
+  //
+  // Adds the tree TD for digits (charges deposited on pads)
+  // to the ROOT file "galice.root"
+  // containing the signal hit coordinates from simulation (tree TH).
+  // Eventually (argument "ibg"), background hits are also taken into account,
+  // from the ROOT file "galice_bgr.root".
+  //
+  // Arguments:
+  //   evNumber1 = first event number to digitize in file "galice.root"
+  //   evNumber2 = last event number to digitize in file "galice.root"
+  //   ibg       = 0 if no background hits to be taken into account;
+  //             = 1 if  background hits to be taken into account
+  //                     in file "galice_bgr.root"
+  //   bgr       : used only if "ibg" = 1
+  //             = number of events in the background file "galice_bgr.root";
+  //               the signal events are divided into "bgr" successive parts,
+  //               all events of each part are associated
+  //               with the same background event,
+  //               starting with event number 0,
+  //               incrementing it by 1 for the next part.
+  //               Strictly speaking, "bgr" can be smaller than
+  //               the number of events in the background file,
+  //               in which case one will only use
+  //               the first "bgr" events of the background file.
+  //               But it SHOULD NOT BE LARGER THAN
+  //               THE NUMBER OF EVENTS IN THE BACKGROUND FILE.
+  //
+  // Input file(s):
+  //   "galice.root" for signal
+  //   "galice_bgr.root" for background (used only if "ibg" = 1)
+  //
+  // Output file:
+  //   "galice.root"
+  //
+  //__________________________________________________________________________
 
 // Dynamically link some shared libs
 
@@ -16,15 +51,11 @@ void MUONdigit (Int_t evNumber1=0,Int_t evNumber2=0,Int_t nsignal  =25)
       loadlibs();
    }
 
-
 // Connect the Root Galice file containing Geometry, Kine and Hits
 
    TFile *file = (TFile*)gROOT->GetListOfFiles()->FindObject("galice.root");
    if (file) file->Close(); 
    file = new TFile("galice.root","UPDATE");
-   file->ls();
-
-   printf ("I'm after Map \n");
 
 // Get AliRun object from file or create it if not on file
 
@@ -36,25 +67,27 @@ void MUONdigit (Int_t evNumber1=0,Int_t evNumber2=0,Int_t nsignal  =25)
    printf ("I'm after gAlice \n");
    
    AliMUON *MUON  = (AliMUON*) gAlice->GetModule("MUON");
+
 //
 // Event Loop
 //
-   Int_t nbgr_ev=0;
+   Int_t nbgr_ev = 0;
    
-   for (int nev=0; nev<= evNumber2; nev++) {
+   for (int nev=evNumber1; nev<= evNumber2; nev++) {
        Int_t nparticles = gAlice->GetEvent(nev);
        cout << "nev         " <<nev<<endl;
-       cout << "nparticles  " <<nparticles<<endl;
-       if (nev < evNumber1) continue;
+       cout << "nparticles  " <<nparticles<<endl; 
        if (nparticles <= 0) return;
 
-       Int_t nbgr_ev=Int_t(nev/nsignal);
-//       printf("nbgr_ev %d\n",nbgr_ev);
-       //if (MUON) MUON->Digitise(nev,nbgr_ev,"Add"," ","galice_bgr.root");
-       if (MUON) MUON->Digitise(nev,nbgr_ev,"rien"," ","galice_bgr.root");  
-//       char hname[30];
-//       sprintf(hname,"TreeD%d",nev);
-//       file->ls();
+       nbgr_ev = Int_t(nev*bgr/(evNumber2+1));
+       
+       if (ibg) {
+        printf("nbgr_ev %d\n",nbgr_ev);
+        if (MUON) MUON->Digitise(nev,nbgr_ev,"Add"," ","galice_bgr.root");
+       } else {
+        if (MUON) MUON->Digitise(nev,nbgr_ev,"rien"," ","galice_bgr.root"); 
+       }
+
    } // event loop 
    file->Close();
 }