]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
AliMUONMerger prototype to be called by the merge manager.
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 2 Feb 2001 14:11:53 +0000 (14:11 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 2 Feb 2001 14:11:53 +0000 (14:11 +0000)
MUON/AliMUONMerger.cxx [new file with mode: 0644]
MUON/AliMUONMerger.h [new file with mode: 0644]
MUON/MUONLinkDef.h
MUON/MUONdigit.C
MUON/Makefile

diff --git a/MUON/AliMUONMerger.cxx b/MUON/AliMUONMerger.cxx
new file mode 100644 (file)
index 0000000..b20e246
--- /dev/null
@@ -0,0 +1,473 @@
+/**************************************************************************
+ * Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+/*
+$Log$
+*/
+
+#include <TTree.h> 
+#include <TVector.h>
+#include <TObjArray.h>
+#include <TFile.h>
+#include <TDirectory.h>
+
+
+// #include "AliMerger.h"
+// #include "AliMergable.h"
+#include "AliMUONMerger.h"
+#include "AliMUONConstants.h"
+#include "AliMUONChamber.h"
+#include "AliHitMap.h"
+#include "AliMUONHitMapA1.h"
+#include "AliMUON.h"
+#include "AliMUONHit.h"
+#include "AliMUONPadHit.h"
+#include "AliMUONDigit.h"
+#include "AliMUONTransientDigit.h"
+#include "AliRun.h"
+#include "AliPDG.h"
+
+ClassImp(AliMUONMerger)
+
+//___________________________________________
+AliMUONMerger::AliMUONMerger()
+{
+// Default constructor    
+    fEvNrSig = 0;
+    fEvNrBgr = 0;
+    fMerge   = kDigitize;
+    fFnBgr   = 0;
+    fHitMap  = 0;
+    fList    = 0;
+    fTrH1    = 0;
+    fHitsBgr = 0;
+    fPadHitsBgr = 0;
+    fHitMap     = 0;
+    fList       = 0;
+    fTrList     = 0;
+    fAddress    = 0; 
+}
+
+//------------------------------------------------------------------------
+AliMUONMerger::~AliMUONMerger()
+{
+// Destructor
+    if (fTrH1)       delete fTrH1;
+    if (fHitsBgr)    delete fHitsBgr;
+    if (fPadHitsBgr) delete fPadHitsBgr;
+    if (fHitMap)     delete fHitMap;
+    if (fList)       delete fList;
+    if (fTrList)     delete fTrList;
+    if (fAddress)    delete fAddress; 
+}
+
+//------------------------------------------------------------------------
+Bool_t AliMUONMerger::Exists(const AliMUONPadHit *mergable)
+{
+    AliMUONPadHit *padhit = (AliMUONPadHit*) mergable;
+    return (fHitMap[fNch]->TestHit(padhit->PadX(),padhit->PadY()));
+}
+
+//------------------------------------------------------------------------
+void AliMUONMerger::Update(AliMUONPadHit *mergable)
+{
+    AliMUONPadHit *padhit = (AliMUONPadHit*) mergable;    
+    AliMUONTransientDigit* pdigit;
+    Int_t ipx      = padhit->PadX();        // pad number on X
+    Int_t ipy      = padhit->PadY();        // pad number on Y
+    Int_t iqpad    = Int_t(padhit->QPad()); // charge per pad
+
+    pdigit = (AliMUONTransientDigit*) fHitMap[fNch]->GetHit(ipx, ipy);
+    // update charge
+    //
+    (*pdigit).AddSignal(iqpad);
+    (*pdigit).AddPhysicsSignal(iqpad);         
+    // update list of tracks
+    //
+    TObjArray* fTrList = (TObjArray*)pdigit->TrackList();
+    Int_t lastEntry = fTrList->GetLast();
+    TVector *pTrack = (TVector*)fTrList->At(lastEntry);
+    TVector &ptrk   = *pTrack;
+    TVector &trinfo = *((TVector*) (*fAddress)[fCountadr-1]);
+    Int_t lastTrack = Int_t(ptrk(0));
+
+    if (trinfo(0) != kBgTag) {
+       if (lastTrack == fTrack) {
+           Int_t lastCharge = Int_t(ptrk(1));
+           lastCharge += iqpad;
+           fTrList->RemoveAt(lastEntry);
+           trinfo(1) = lastCharge;
+           fTrList->AddAt(&trinfo,lastEntry);
+       } else {
+           fTrList->Add(&trinfo);
+       }
+    } else {
+       if (lastTrack != -1) fTrList->Add(&trinfo);
+    }
+}
+
+//------------------------------------------------------------------------
+void AliMUONMerger::CreateNew(AliMUONPadHit *mergable)
+{
+    AliMUONPadHit *padhit = (AliMUONPadHit*) mergable;    
+    AliMUONTransientDigit* pdigit;
+
+    Int_t ipx      = padhit->PadX();       // pad number on X
+    Int_t ipy      = padhit->PadY();       // pad number on Y
+    fList->AddAtAndExpand(
+       new AliMUONTransientDigit(fNch,fDigits),fCounter);
+    fHitMap[fNch]->SetHit(ipx, ipy, fCounter);
+    fCounter++;
+    pdigit = (AliMUONTransientDigit*)fList->At(fList->GetLast());
+    // list of tracks
+    TObjArray *fTrList = (TObjArray*)pdigit->TrackList();
+    TVector &trinfo    = *((TVector*) (*fAddress)[fCountadr-1]);
+    fTrList->Add(&trinfo);
+}
+
+
+//------------------------------------------------------------------------
+void AliMUONMerger::Init()
+{
+// Initialisation
+    
+    if (fMerge) fBgrFile = InitBgr();
+}
+
+
+
+//------------------------------------------------------------------------
+TFile* AliMUONMerger::InitBgr()
+{
+// Initialise background event
+    TFile *file = new TFile(fFnBgr);
+// add error checking later
+    printf("\n AliMUONMerger has opened %s file with background event \n", fFnBgr);
+    fHitsBgr     = new TClonesArray("AliMUONHit",1000);
+    fPadHitsBgr  = new TClonesArray("AliMUONPadHit",1000);
+    return file;
+}
+
+//------------------------------------------------------------------------
+void AliMUONMerger::Digitise()
+{
+
+    // keep galice.root for signal and name differently the file for 
+    // background when add! otherwise the track info for signal will be lost !
+  
+    AliMUONChamber*   iChamber;
+    AliSegmentation*  segmentation;
+
+    fList = new TObjArray;
+    if(!fAddress) fAddress = new TClonesArray("TVector",10000);
+
+    AliMUON *pMUON  = (AliMUON *) gAlice->GetModule("MUON");
+    fHitMap= new AliHitMap* [AliMUONConstants::NCh()];
+    for (Int_t i = 0; i < AliMUONConstants::NCh(); i++) {fHitMap[i] = 0;}
+    if (fMerge ) {
+       fBgrFile->cd();
+       fBgrFile->ls();
+        //
+       // Get Hits Tree header from file
+       if(fHitsBgr) fHitsBgr->Clear();
+       if(fPadHitsBgr) fPadHitsBgr->Clear();
+       if(fTrH1) delete fTrH1;
+       fTrH1 = 0;
+       
+       char treeName[20];
+       sprintf(treeName,"TreeH%d",fEvNrBgr);
+       fTrH1 = (TTree*)gDirectory->Get(treeName);
+       if (!fTrH1) {
+           printf("ERROR: cannot find Hits Tree for event:%d\n",fEvNrBgr);
+       }
+        //
+       // Set branch addresses
+       TBranch *branch;
+       char branchname[20];
+       sprintf(branchname,"%s",pMUON->GetName());
+       if (fTrH1 && fHitsBgr) {
+           branch = fTrH1->GetBranch(branchname);
+           if (branch) branch->SetAddress(&fHitsBgr);
+       }
+       if (fTrH1 && fPadHitsBgr) {
+           branch = fTrH1->GetBranch("MUONCluster");
+           if (branch) branch->SetAddress(&fPadHitsBgr);
+       }
+    }
+    //
+    // loop over cathodes
+    //
+    AliHitMap* hm;
+    fCountadr = 0;
+    for (int icat = 0; icat < 2; icat++) { 
+       fCounter = 0;
+       Int_t * nmuon = new Int_t [AliMUONConstants::NCh()];
+       for (Int_t i = 0; i < AliMUONConstants::NCh(); i++) {
+           iChamber = &(pMUON->Chamber(i));
+           if (iChamber->Nsec() == 1 && icat == 1) {
+               continue;
+           } else {
+               segmentation = iChamber->SegmentationModel(icat+1);
+           }
+           fHitMap[i] = new AliMUONHitMapA1(segmentation, fList);
+           nmuon[i] = 0;
+       }
+
+//
+//   Loop over tracks
+//
+
+       TTree *treeH  = gAlice->TreeH();
+       Int_t ntracks = (Int_t) treeH->GetEntries();
+       Int_t jj;
+
+       Float_t ** xhit = new Float_t * [AliMUONConstants::NCh()];
+       for (jj = 0; jj < AliMUONConstants::NCh(); jj++) xhit[jj] = new Float_t[2];
+       Float_t ** yhit = new Float_t * [AliMUONConstants::NCh()];
+       for (jj = 0; jj < AliMUONConstants::NCh(); jj++) yhit[jj] = new Float_t[2];
+
+       for (fTrack = 0; fTrack < ntracks; fTrack++) {
+           gAlice->ResetHits();
+           treeH->GetEvent(fTrack);
+//
+//   Loop over hits
+           for(AliMUONHit* mHit = (AliMUONHit*)pMUON->FirstHit(-1); 
+               mHit;
+               mHit = (AliMUONHit*)pMUON->NextHit()) 
+           {
+               fNch = mHit->Chamber()-1;  // chamber number
+               if (fNch > AliMUONConstants::NCh()-1) continue;
+               iChamber = &(pMUON->Chamber(fNch));
+               /*
+               if (fMerge) {
+                   if (mHit->Particle() == kMuonPlus || 
+                       mHit->Particle() == kMuonMinus) {
+                       xhit[fNch][nmuon[fNch]] = mHit->X();
+                       yhit[fNch][nmuon[fNch]] = mHit->Y();
+                       nmuon[fNch]++;
+                       if (nmuon[fNch] > 2) printf("MUON: nmuon %d\n",nmuon[fNch]);
+                   }
+               }
+               */
+               
+//
+// Loop over pad hits
+               for (AliMUONPadHit* mPad =
+                        (AliMUONPadHit*)pMUON->FirstPad(mHit,pMUON->PadHits());
+                    mPad;
+                    mPad = (AliMUONPadHit*)pMUON->NextPad(pMUON->PadHits()))
+               {
+                   Int_t cathode  = mPad->Cathode();      // cathode number
+                   Int_t ipx      = mPad->PadX();         // pad number on X
+                   Int_t ipy      = mPad->PadY();         // pad number on Y
+                   Int_t iqpad    = Int_t(mPad->QPad());  // charge per pad
+                   if (cathode != (icat+1)) continue;
+
+                   segmentation = iChamber->SegmentationModel(cathode);
+
+                   new((*fAddress)[fCountadr++]) TVector(2);
+
+                   TVector &trinfo = *((TVector*) (*fAddress)[fCountadr-1]);
+                   trinfo(0) = (Float_t)fTrack;
+                   trinfo(1) = (Float_t)iqpad;
+
+                   fDigits[0] = ipx;
+                   fDigits[1] = ipy;
+                   fDigits[2] = icat;
+                   fDigits[3] = iqpad;
+                   fDigits[4] = iqpad;
+                   if (mHit->Particle() == kMuonPlus ||
+                       mHit->Particle() == kMuonMinus) {
+                       fDigits[5] = mPad->HitNumber();
+                   } else fDigits[5] = -1;
+
+                   // build the list of fired pads and update the info
+
+                   if (!Exists(mPad)) {
+                       CreateNew(mPad);
+                   } else {
+                       Update(mPad);
+                   } //  end if pdigit
+               } //end loop over clusters
+           } // hit loop
+       } // track loop
+
+       // open the file with background
+       
+       if (fMerge) {
+           ntracks = (Int_t)fTrH1->GetEntries();
+//
+//   Loop over tracks
+//
+           for (fTrack = 0; fTrack < ntracks; fTrack++) {
+
+               if (fHitsBgr)       fHitsBgr->Clear();
+               if (fPadHitsBgr)    fPadHitsBgr->Clear();
+
+               fTrH1->GetEvent(fTrack);
+//
+//   Loop over hits
+               AliMUONHit* mHit;
+               for(int i = 0; i < fHitsBgr->GetEntriesFast(); ++i) 
+               {       
+                   mHit   = (AliMUONHit*) (*fHitsBgr)[i];
+                   fNch   = mHit->Chamber()-1;  // chamber number
+                   iChamber = &(pMUON->Chamber(fNch));
+                    Float_t xbgr = mHit->X();
+                   Float_t ybgr = mHit->Y();
+                   Bool_t cond  = kFALSE;
+                   /*
+                   for (Int_t imuon = 0; imuon < nmuon[fNch]; imuon++) {
+                       Float_t dist = (xbgr-xhit[fNch][imuon])*(xbgr-xhit[fNch][imuon])
+                           +(ybgr-yhit[fNch][imuon])*(ybgr-yhit[fNch][imuon]);
+                       if (dist < 100.) cond = kTRUE;
+                   }
+                   */
+                   cond  = kTRUE;
+//
+// Loop over pad hits
+                   for (AliMUONPadHit* mPad =
+                            (AliMUONPadHit*)pMUON->FirstPad(mHit,fPadHitsBgr);
+                        mPad;
+                        mPad = (AliMUONPadHit*)pMUON->NextPad(fPadHitsBgr))
+                   {
+                       Int_t cathode  = mPad->Cathode();     // cathode number
+                       Int_t ipx      = mPad->PadX();        // pad number on X
+                       Int_t ipy      = mPad->PadY();        // pad number on Y
+                       Int_t iqpad    = Int_t(mPad->QPad()); // charge per pad
+
+                       if (cathode != (icat+1)) continue;
+                       new((*fAddress)[fCountadr++]) TVector(2);
+                       TVector &trinfo = *((TVector*) (*fAddress)[fCountadr-1]);
+                       trinfo(0) = kBgTag;  // tag background
+                       trinfo(1) = kBgTag;
+                       
+                       fDigits[0] = ipx;
+                       fDigits[1] = ipy;
+                       fDigits[2] = icat;
+                       fDigits[3] = iqpad;
+                       fDigits[4] = 0;
+                       fDigits[5] = -1;
+                       
+                       // build the list of fired pads and update the info
+                       if (!Exists(mPad)) {
+                           CreateNew(mPad);
+                       } else {
+                           Update(mPad);
+                       } //  end if !Exists
+                   } //end loop over clusters
+               } // hit loop
+           } // track loop
+
+           TTree *fAli = gAlice->TreeK();
+            TFile *file = NULL;
+           
+           if (fAli) file = fAli->GetCurrentFile();
+           file->cd();
+       } // if fMerge
+       delete [] xhit;
+       delete [] yhit;
+
+       Int_t tracks[10];
+       Int_t charges[10];
+       Int_t nentries = fList->GetEntriesFast();
+       
+       for (Int_t nent = 0; nent < nentries; nent++) {
+           AliMUONTransientDigit *address = (AliMUONTransientDigit*)fList->At(nent);
+           if (address == 0) continue; 
+           Int_t ich = address->Chamber();
+           Int_t   q = address->Signal(); 
+           iChamber = &(pMUON->Chamber(ich));
+//
+//  Digit Response (noise, threshold, saturation, ...)
+           AliMUONResponse * response = iChamber->ResponseModel();
+           q = response->DigitResponse(q);
+           
+           if (!q) continue;
+           
+           fDigits[0] = address->PadX();
+           fDigits[1] = address->PadY();
+           fDigits[2] = address->Cathode();
+           fDigits[3] = q;
+           fDigits[4] = address->Physics();
+           fDigits[5] = address->Hit();
+           
+           TObjArray* fTrList = (TObjArray*)address->TrackList();
+           Int_t nptracks = fTrList->GetEntriesFast();
+
+           // this was changed to accomodate the real number of tracks
+
+           if (nptracks > 10) {
+               printf("\n Attention - nptracks > 10 %d \n", nptracks);
+               nptracks = 10;
+           }
+           if (nptracks > 2) {
+               printf("Attention - nptracks > 2  %d \n",nptracks);
+               printf("cat,ich,ix,iy,q %d %d %d %d %d \n",icat,ich,fDigits[0],fDigits[1],q);
+           }
+           for (Int_t tr = 0; tr < nptracks; tr++) {
+               TVector *ppP = (TVector*)fTrList->At(tr);
+               if(!ppP ) printf("ppP - %p\n",ppP);
+               TVector &pp  = *ppP;
+               tracks[tr]   = Int_t(pp(0));
+               charges[tr]  = Int_t(pp(1));
+           }      //end loop over list of tracks for one pad
+            // Sort list of tracks according to charge
+           if (nptracks > 1) {
+               pMUON->SortTracks(tracks,charges,nptracks);
+           }
+           if (nptracks < 10 ) {
+               for (Int_t i = nptracks; i < 10; i++) {
+                   tracks[i]  = 0;
+                   charges[i] = 0;
+               }
+           }
+           
+           // fill digits
+           pMUON->AddDigits(ich,tracks,charges,fDigits);
+           // delete fTrList;
+       }
+       gAlice->TreeD()->Fill();
+       pMUON->ResetDigits();
+       fList->Delete();
+
+       
+       for(Int_t ii = 0; ii < AliMUONConstants::NCh(); ++ii) {
+           if (fHitMap[ii]) {
+               hm=fHitMap[ii];
+               delete hm;
+               fHitMap[ii] = 0;
+           }
+       }
+       delete [] nmuon;    
+    } //end loop over cathodes
+    delete [] fHitMap;
+    char hname[30];
+    sprintf(hname,"TreeD%d",fEvNrSig);
+    gAlice->TreeD()->Write(hname);
+    // reset tree
+    gAlice->TreeD()->Reset();
+    delete fList;
+    
+    if (fAddress)    fAddress->Delete();
+    if (fHitsBgr)    fHitsBgr->Delete();
+    if (fPadHitsBgr) fPadHitsBgr->Delete();
+    // gObjectTable->Print();
+}
+
+
+
+
+
diff --git a/MUON/AliMUONMerger.h b/MUON/AliMUONMerger.h
new file mode 100644 (file)
index 0000000..f894f1e
--- /dev/null
@@ -0,0 +1,68 @@
+#ifndef ALIMUONMERGER_H
+#define ALIMUONMERGER_H
+/* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id$ */
+
+// #include "AliMerger.h"
+// #include "AliMergable.h"
+
+class AliMUONPadHit;
+class AliHitMap;
+
+typedef enum {kDigitize=0, kMerge = 1} MergeMode_t;
+
+class AliMUONMerger {
+ public:
+    
+    AliMUONMerger();
+    virtual ~AliMUONMerger();
+    
+    // Compare pad hits
+    virtual Bool_t Exists(const AliMUONPadHit * sdigit);
+    // Update a pad hit
+    virtual  void Update(AliMUONPadHit *sdigit);
+    // Create a new hit
+    virtual  void CreateNew(AliMUONPadHit *sdigit);
+
+    // Initialize merging and digitisation
+    virtual void Init();
+
+    // Do the main work
+    void Digitise() ;
+    
+    // Setters -> Later Communication with gAlice 
+    void SetSignalEventNumber(Int_t i)     {fEvNrSig = i;}
+    void SetBackgroundEventNumber(Int_t i) {fEvNrBgr = i;}    
+    void SetBackgroundFileName(char* file) {fFnBgr = file;}        
+    void SetMode(MergeMode_t mode) {fMerge = mode;}
+       
+    enum {kBgTag = -1};
+    
+ private:    
+    // Open the bgr file
+    TFile *InitBgr();
+ private:
+    TTree *fTrH1;                   // ! Hits Tree for background event
+    TClonesArray *fHitsBgr;         // ! List of hits for one track only
+    TClonesArray *fPadHitsBgr;      // ! List of clusters for one track only
+    AliHitMap **fHitMap;            // ! pointer to array of pointers to hitmaps
+    Int_t fNch;                     // ! chamber nr (loop variable)
+    Int_t fTrack;                   // ! track nr (loop variable)
+    TObjArray *fList;               // ! list of AliMUONTransientDigit
+    TObjArray *fTrList;             // ! list of tracks
+    TClonesArray *fAddress;         // ! pointer to TClonesArray of TVectors with trackinfo
+    Int_t fCounter;                 // ! nr. of AliMUONTransientDigit
+    Int_t fCountadr;                // ! counter for trinfo
+    Int_t fDigits[6];               // ! array with digits
+    Int_t fEvNrSig;                 // signal     event number
+    Int_t fEvNrBgr;                 // background event number    
+    MergeMode_t fMerge;             // merging type kDigitize, kMerge
+    char  *fFnBgr;                  // background file name
+    TFile *fBgrFile;                // Pointer to background file
+    
+    ClassDef(AliMUONMerger,0)
+};    
+#endif
+
index 054ec9a33f9e4300032a3fbc73bfc059441fb7b0..a2baef599e4a6d8c3ab6d4156cd0046ea2c9d885 100644 (file)
@@ -53,6 +53,7 @@
 #pragma link C++ class  AliMUONRecoEvent-;
 #pragma link C++ class  AliMUONRecoTrack+;
 #pragma link C++ class  AliMUONRecoDisplay+;
+#pragma link C++ class  AliMUONMerger+;
 #endif
 
 
index da09f6ab5f72fa942482127b55fff99484947b12..7346d3943e81084561d3218171d28ec0cbfceb3a 100644 (file)
@@ -2,48 +2,6 @@
 
 void MUONdigit (Int_t evNumber1=0, Int_t evNumber2=9, Int_t ibg=1, Int_t bgr=10) 
 {
-  //////////////////////////////////////
-  //                                  //
-  // 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
 
    if (gClassTable->GetID("AliRun") < 0) {
@@ -64,32 +22,21 @@ void MUONdigit (Int_t evNumber1=0, Int_t evNumber2=9, Int_t ibg=1, Int_t bgr=10)
        if (gAlice) printf("AliRun object found on file\n");
        if (!gAlice) gAlice = new AliRun("gAlice","Alice test program");
    }
-   printf ("I'm after gAlice \n");
-   
-   AliMUON *MUON  = (AliMUON*) gAlice->GetModule("MUON");
-
-//
-// Event Loop
-//
-   Int_t nbgr_ev = 0;
-   
-   for (int nev=evNumber1; nev<= evNumber2; nev++) {
-       Int_t nparticles = gAlice->GetEvent(nev);
-       cout << "nev         " <<nev<<endl;
-       cout << "nparticles  " <<nparticles<<endl; 
-       if (nparticles <= 0) return;
-
-       nbgr_ev = Int_t(nev*bgr/(evNumber2+1));
+   AliMUON *pMUON  = (AliMUON*) gAlice->GetModule("MUON");
+   if (pMUON) {
+// creation
+       AliMUONMerger* merger = new AliMUONMerger();
+// configuration
+       merger->SetMode(1);
+       merger->SetSignalEventNumber(0);
+       merger->SetBackgroundEventNumber(0);
+       merger->SetBackgroundFileName("bg.root");
        
-       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();
+// pass
+       pMUON->SetMerger(merger);
+   }
+// Action !
+       gAlice->SDigits2Digits();
 }
 
 
index 94cc9e0811ec5c9bd9dff7e4e10bd94912a9c60e..f144d52bd1e90fee04b13e39b9f4eb4370860810 100644 (file)
@@ -36,7 +36,8 @@ SRCS         = AliMUONChamber.cxx AliMUONChamberTrigger.cxx \
               AliMUONClusterInput.cxx  \
               AliMUONSegmentationSlatModule.cxx AliMUONSegmentationSlatModuleN.cxx \
               AliMUONSegmentationSlat.cxx AliMUONSegmentationSlatN.cxx \
-              AliMUONRecoEvent.cxx AliMUONRecoDisplay.cxx
+              AliMUONRecoEvent.cxx AliMUONRecoDisplay.cxx \
+               AliMUONMerger.cxx
 
 # C++ Headers