]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/AliRICHDigitizer.cxx
Moving lib*.pkg
[u/mrichter/AliRoot.git] / RICH / AliRICHDigitizer.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16
17 #include <Riostream.h> 
18
19 #include <TTree.h> 
20 #include <TObjArray.h>
21 #include <TFile.h>
22 #include <TDirectory.h>
23 #include <TParticle.h>
24
25 #include <AliRunLoader.h>
26 #include <AliLoader.h>
27
28 #include "AliRICHDigitizer.h"
29 #include "AliRICH.h"
30 #include "AliRunDigitizer.h"
31
32 ClassImp(AliRICHDigitizer)
33
34 //__________________________________________________________________________________________________
35 Bool_t AliRICHDigitizer::Init()
36 {
37 //This methode is called from AliRunDigitizer after the corresponding file is open
38   if(GetDebug())Info("Init","Start.");
39   AliRunLoader *pOutAL = 
40     AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
41   if (!pOutAL->GetAliRun()) pOutAL->LoadgAlice();
42   fRich=(AliRICH*)pOutAL->GetAliRun()->GetDetector("RICH");
43   Rich()->P()->GenSigmaThMap();
44   return kTRUE;
45 }//Init()
46 //__________________________________________________________________________________________________
47 void AliRICHDigitizer::Exec(Option_t*)
48 {
49   if(GetDebug())Info("Exec","Start with %i input(s) for event %i",fManager->GetNinputs(),fManager->GetOutputEventNr());
50   
51   AliRunLoader *pInAL=0, *pOutAL;//in and out Run loaders
52   AliLoader    *pInRL=0, *pOutRL;//in and out RICH loaders
53  
54   pOutAL = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
55   pOutRL = pOutAL->GetLoader("RICHLoader");
56   pOutRL->MakeTree("D");   Rich()->MakeBranch("D"); //create TreeD with RICH branches in output stream
57   
58   TClonesArray tmpCA("AliRICHdigit");//tmp storage for sdigits sum up from all input files
59   Int_t total=0;
60   for(Int_t inFileN=0;inFileN<fManager->GetNinputs();inFileN++){//files loop
61     pInAL = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(inFileN)); 
62     pInRL = pInAL->GetLoader("RICHLoader"); if(pInRL==0) continue;//no RICH in this input, check the next input
63     if (!pInAL->GetAliRun()) pInAL->LoadgAlice();
64     AliRICH* rich=(AliRICH*)pInAL->GetAliRun()->GetDetector("RICH");
65     pInRL->LoadSDigits(); pInRL->TreeS()->GetEntry(0);
66     Info("Exec","input %i has %i sdigits",inFileN,rich->SDigits()->GetEntries());
67     for(Int_t i=0;i<rich->SDigits()->GetEntries();i++) {
68       new(tmpCA[total++]) AliRICHdigit(*(AliRICHdigit*)rich->SDigits()->At(i)); 
69       ((AliRICHdigit*)tmpCA[total-1])->AddTidOffset(fManager->GetMask(inFileN));
70     }
71     pInRL->UnloadSDigits();   rich->ResetSDigits();
72   }//files loop
73   
74   tmpCA.Sort();                     //sort them according to Id() methode
75   
76   Int_t chFbMip=0,chamber=0,x=0,y=0,tid[3],id=0; Double_t q=0;
77   Int_t iNdigitsPerPad=0;//how many sdigits for a given pad
78   for(Int_t i=0;i<tmpCA.GetEntries();i++){//sdigits loop (sorted)
79     AliRICHdigit *pSdig=(AliRICHdigit*)tmpCA.At(i);//get new sdigit
80     if(pSdig->Id()==id){//still the same pad
81       iNdigitsPerPad++;         q+=pSdig->Q();       chFbMip+=pSdig->ChFbMi();//sum up charge and cfm
82       if(iNdigitsPerPad<=3)        tid[iNdigitsPerPad-1]=pSdig->Tid(0);
83       else                         if(GetDebug())Warning("Exec","More then 3 sdigits for the given pad");
84     }else{//new pad, add the pevious one
85         if(id!=kBad&&Rich()->P()->IsOverTh(chamber,x,y,q)) Rich()->AddDigit(chamber,x,y,(Int_t)q,chFbMip,tid); //add newly created dig
86         chFbMip=pSdig->ChFbMi(); chamber=pSdig->C(); id=pSdig->Id();  x=pSdig->X(); y=pSdig->Y(); q=pSdig->Q();  //init all values by current sdig
87         iNdigitsPerPad=1; tid[0]=pSdig->Tid(0); tid[1]=tid[2]=kBad;
88       }
89   }//sdigits loop (sorted)
90   if(tmpCA.GetEntries()&&Rich()->P()->IsOverTh(chamber,x,y,q)) Rich()->AddDigit(chamber,x,y,(Int_t)q,chFbMip,tid);//add the last dig
91   
92   pOutRL->TreeD()->Fill();              //fill the tree with the list of digits
93   pOutRL->WriteDigits("OVERWRITE");     //serialize them to file
94   
95   tmpCA.Clear();
96   pOutRL->UnloadDigits();   Rich()->ResetDigits();
97             
98   if(GetDebug())Info("Exec","Stop.");
99 }//Exec()
100 //__________________________________________________________________________________________________