]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDDigitizer.cxx
Mostly minor style modifications to be ready for cloning with EMCAL
[u/mrichter/AliRoot.git] / FMD / AliFMDDigitizer.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 <TTree.h> 
18 #include <TVector.h>
19 #include <TObjArray.h>
20 #include <TFile.h>
21 #include <TDirectory.h>
22 #include <TRandom.h>
23
24
25 #include "AliFMDDigitizer.h"
26 #include "AliFMD.h"
27 #include "AliFMDSDigitizer.h"
28 #include "AliFMDhit.h"
29 #include "AliFMDdigit.h"
30 #include "AliRunDigitizer.h"
31
32 #include "AliRun.h"
33 #include "AliPDG.h"
34
35 #include <stdlib.h>
36 #include <iostream.h>
37 #include <fstream.h>
38
39 ClassImp(AliFMDDigitizer)
40
41 //___________________________________________
42   AliFMDDigitizer::AliFMDDigitizer()  :AliDigitizer()
43 {
44 // Default ctor - don't use it
45   ;
46 }
47
48 //___________________________________________
49 AliFMDDigitizer::AliFMDDigitizer(AliRunDigitizer* manager) 
50     :AliDigitizer(manager) 
51 {
52         cout<<"AliFMDDigitizer::AliFMDDigitizer"<<endl;
53 // ctor which should be used
54 //  fDebug =0;
55  // if (GetDebug()>2)
56   //  cerr<<"AliFMDDigitizer::AliFMDDigitizer"
57    //     <<"(AliRunDigitizer* manager) was processed"<<endl;
58 }
59
60 //------------------------------------------------------------------------
61 AliFMDDigitizer::~AliFMDDigitizer()
62 {
63 // Destructor
64 }
65
66  //------------------------------------------------------------------------
67 Bool_t AliFMDDigitizer::Init()
68 {
69 // Initialization
70  cout<<"AliFMDDigitizer::Init"<<endl;
71  return kTRUE;
72 }
73  
74
75 //---------------------------------------------------------------------
76
77 void AliFMDDigitizer::Exec(Option_t* option)
78 {
79
80
81
82 #ifdef DEBUG
83   cout<<"AliFMDDigitizer::>SDigits2Digits start...\n";
84 #endif
85
86   //  cout<<" FMD "<<FMD<<endl;
87
88    Int_t volume, sector, ring, charge;
89   Float_t e;
90   Float_t de[10][50][300];
91   Int_t hit;
92   Int_t digit[5];
93   Int_t ivol, iSector, iRing;
94   for (Int_t i=0; i<10; i++)
95     for(Int_t j=0; j<50; j++)
96       for(Int_t ij=0; ij<300; ij++)
97         de[i][j][ij]=0;
98   Int_t NumberOfRings[5]=
99   {256,128,256,128,256};
100   Int_t NumberOfSectors[5]=
101   {20,40,20,40,20}; 
102   
103   AliFMDhit *fmdHit=0;
104   TTree *TH=0;
105   TBranch *brHits=0;
106   // fHits = new TClonesArray ("AliFMDhit", 1000);
107
108   AliFMD * fFMD = (AliFMD *) gAlice->GetDetector("FMD") ;
109
110 // Loop over files to digitize
111
112   Int_t nFiles=GetManager()->GetNinputs();
113   for (Int_t inputFile=0; inputFile<nFiles;
114        inputFile++) {
115
116     cout<<" event "<<fManager->GetOutputEventNr()<<endl;
117     if (fFMD)
118     {
119       TClonesArray *FMDhits = fFMD->Hits ();
120       TH = fManager->GetInputTreeH(inputFile);
121       brHits = TH->GetBranch("FMD");
122       if (brHits) {
123         fFMD->SetHitsAddressBranch(brHits);
124       }else{
125         cerr<<"EXEC Branch FMD hit not found"<<endl;
126         exit(111);
127       } 
128       Int_t ntracks    = (Int_t) TH->GetEntries();
129
130         for (Int_t track = 0; track < ntracks; track++)
131         {
132           brHits->GetEntry(track);
133           Int_t nhits = FMDhits->GetEntries ();
134
135           for (hit = 0; hit < nhits; hit++)
136             {
137               fmdHit = (AliFMDhit *) FMDhits->UncheckedAt (hit);
138               
139               volume = fmdHit->Volume ();
140               sector = fmdHit->NumberOfSector ();
141               ring = fmdHit->NumberOfRing ();
142               e = fmdHit->Edep ();
143               de[volume][sector][ring] += e;
144               
145             }           //hit loop
146         }                       //track loop
147     }                   //if FMD
148
149  
150   // Put noise and make ADC signal
151    Float_t I = 1.664 * 0.04 * 2.33 / 22400;     // = 0.69e-6;
152  for ( ivol=1; ivol<=5; ivol++){
153     for ( iSector=1; iSector<=NumberOfSectors[ivol-1]; iSector++){
154       for ( iRing=1; iRing<=NumberOfRings[ivol-1]; iRing++){
155         digit[0]=ivol;
156         digit[1]=iSector;
157         digit[2]=iRing;
158         charge = Int_t (de[ivol][iSector][iRing] / I);
159         digit[3]=PutNoise(charge);
160         if(digit[3]<= 500) digit[3]=500; 
161     //dynamic range from MIP(0.155MeV) to 30MIP(4.65MeV)
162     //1024 ADC channels 
163         Float_t channelWidth=(22400*50)/1024;
164         digit[4]=Int_t(digit[3]/channelWidth);
165         if (digit[4]>1024) digit[4]=1024; 
166         fFMD->AddDigit(digit);
167       } //ivol
168     } //iSector
169   } //iRing
170
171   TTree* treeD = fManager->GetTreeD();
172   treeD->Clear();
173   treeD->Reset();
174   fFMD->MakeBranchInTreeD(treeD);
175   treeD->Fill();
176  
177   fManager->GetTreeD()->Write(0,TObject::kOverwrite);
178   
179   gAlice->ResetDigits();
180   }
181 }
182