]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALCalibHistoProducer.cxx
added macros to create and read TOF TriggerMask
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALCalibHistoProducer.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, 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 /* $Id$ */
17 /* History of cvs commits:
18  *
19  * $Log$
20  * Revision 1.1  2006/12/07 16:32:16  gustavo
21  * First shuttle code, online calibration histograms producer, EMCAL preprocessor
22  * 
23  *
24 */
25 ///////////////////////////////////////////////////////////////////////////////
26 // Class AliEMCALCalibHistoProducer accumulating histograms
27 // with amplitudes per EMCAL channel
28 // It is intended to run at DAQ computers (LDC, GDC, HLT or MOOD)
29 // and it fills the histograms with amplitudes per channel.
30 // Usage example see in EMCAL/macros/Shuttle/AliEMCALCalibHistoProducer.C
31 //
32 // Author: Boris Polichtchouk, 4 October 2006
33 // Adapted for EMCAL by Gustavo Conesa Balbastre, October 2006
34 ///////////////////////////////////////////////////////////////////////////////
35
36 #include "TH1.h"
37 #include "TFile.h"
38 #include "TProfile.h"
39
40
41 #include "AliLog.h"
42 #include "AliRawReader.h"
43 #include "AliCaloRawStreamV3.h"
44 #include "AliEMCALCalibHistoProducer.h"
45
46 ClassImp(AliEMCALCalibHistoProducer)
47
48 //-----------------------------------------------------------------------------
49 AliEMCALCalibHistoProducer::AliEMCALCalibHistoProducer(AliRawReader* rawReader) : 
50   TObject(),fRawReader(rawReader),fHistoFile(0),fHistoFileName("calibEmcHisto.root"),
51   fUpdatingRate(100), fNSuperModules(12),  fNCellsEta (48),   
52   fNCellsPhi(24),  fNCellsPhiHalfSM(12)
53 {
54   // Constructor
55
56   for(Int_t ism=0; ism<fNSuperModules; ism++) {
57     fAmpProf[ism] = 0;
58     fSMInstalled[ism]=kTRUE;
59     for(Int_t icol=0; icol<fNCellsEta; icol++) 
60       for(Int_t irow=0; irow<fNCellsPhi; irow++) 
61           fAmpHisto[ism][icol][irow]=0;
62   }
63
64 }
65 //-----------------------------------------------------------------------------
66 AliEMCALCalibHistoProducer::AliEMCALCalibHistoProducer() : 
67   fRawReader(0x0),fHistoFile(0),fHistoFileName(""),
68   fUpdatingRate(0), fNSuperModules(12),  fNCellsEta (48),   
69   fNCellsPhi(24),  fNCellsPhiHalfSM(12)
70 {
71   // default Constructor
72
73   for(Int_t ism=0; ism<fNSuperModules; ism++) {
74     fAmpProf[ism] = 0;
75     fSMInstalled[ism]=kTRUE;
76     for(Int_t icol=0; icol<fNCellsEta; icol++) 
77       for(Int_t irow=0; irow<fNCellsPhi; irow++) 
78           fAmpHisto[ism][icol][irow]=0;
79   }
80
81 }
82
83 //-----------------------------------------------------------------------------
84 AliEMCALCalibHistoProducer::AliEMCALCalibHistoProducer(const AliEMCALCalibHistoProducer & copy) :
85   TObject(copy),fRawReader((AliRawReader*)copy. fRawReader->Clone()),
86   fHistoFile((TFile*)copy.fHistoFile->Clone()),fHistoFileName(copy.fHistoFileName),
87   fUpdatingRate(copy.fUpdatingRate),
88   fNSuperModules(copy.fNSuperModules), fNCellsEta (copy.fNCellsEta), 
89   fNCellsPhi(copy.fNCellsPhi), fNCellsPhiHalfSM(copy.fNCellsPhiHalfSM)
90 {
91   //copy constructor
92
93  for(Int_t ism=0; ism<fNSuperModules; ism++) {
94     fAmpProf[ism] = copy. fAmpProf[ism];
95     fSMInstalled[ism]= copy.fSMInstalled[ism];
96     for(Int_t icol=0; icol<fNCellsEta; icol++) 
97       for(Int_t irow=0; irow<fNCellsPhi; irow++) 
98           fAmpHisto[ism][icol][irow]= copy.fAmpHisto[ism][icol][irow];
99   }
100
101 }
102
103 //-----------------------------------------------------------------------------
104 AliEMCALCalibHistoProducer::~AliEMCALCalibHistoProducer()
105 {
106   // Destructor
107   if(fHistoFile) {
108     fHistoFile->Close();
109     delete fHistoFile;
110   }
111 }
112
113 //------------------------------------------------------------------------------
114 //
115 AliEMCALCalibHistoProducer& AliEMCALCalibHistoProducer::operator=(const AliEMCALCalibHistoProducer& copy)
116 {
117         //
118         // Assignment operator.
119         // Besides copying all parameters, duplicates all collections.  
120         //
121                 if (&copy == this) return *this;
122         TObject::operator=(copy);
123         fHistoFileName = copy.fHistoFileName;
124         fUpdatingRate = copy.fUpdatingRate;
125         fNSuperModules = copy.fNSuperModules;
126         fNCellsEta = copy.fNCellsEta;
127         fNCellsPhi = copy.fNCellsPhi;
128         fNCellsPhiHalfSM = copy.fNCellsPhiHalfSM;
129         
130         fRawReader  = (AliRawReader*)copy. fRawReader->Clone();
131         fHistoFile      = (TFile*)copy.fHistoFile->Clone();
132
133         for(Int_t ism=0; ism<fNSuperModules; ism++) {
134           fAmpProf[ism] = copy. fAmpProf[ism];
135           fSMInstalled[ism]= copy.fSMInstalled[ism];
136           for(Int_t icol=0; icol<fNCellsEta; icol++) 
137             for(Int_t irow=0; irow<fNCellsPhi; irow++) 
138               fAmpHisto[ism][icol][irow]= copy.fAmpHisto[ism][icol][irow];
139         }
140
141         return (*this);
142 }
143 //-----------------------------------------------------------------------------
144 void AliEMCALCalibHistoProducer::Init()
145 {
146   // initializes input data stream supplied by rawReader
147   // Checks existence of histograms which might have been left
148   // from the previous runs to continue their filling
149   fHistoFile =  new TFile(fHistoFileName,"update");
150   const Int_t buffersize = 128;
151   char hname[buffersize];
152   Int_t nRow =  fNCellsPhi ;
153
154   for(Int_t supermodule=0; supermodule<fNSuperModules; supermodule++) {
155     //Check installed supermodules
156     if(fSMInstalled[supermodule]==kFALSE) continue;
157     //Check created profiles
158     snprintf(hname,buffersize,"mod%d",supermodule);
159     TProfile* prof = (TProfile*)fHistoFile->Get(hname);
160     if(prof)
161       fAmpProf[supermodule]=prof;
162     
163     //Check created histograms
164     if(supermodule > 10) nRow = fNCellsPhiHalfSM ; //Supermodules 11 and 12 are half supermodules
165     for(Int_t column=0; column<fNCellsEta; column++) {
166       for(Int_t row=0; row<nRow; row++) {
167         snprintf(hname,buffersize,"mod%dcol%drow%d",supermodule,column,row);
168         TH1F* hist = (TH1F*)fHistoFile->Get(hname);
169         if(hist) 
170           fAmpHisto[supermodule][column][row]=hist;
171       }
172     }
173   }
174   
175 }
176 //-----------------------------------------------------------------------------
177 void AliEMCALCalibHistoProducer::Run()
178 {
179   // Reads raw data stream and fills amplitude histograms
180   // The histograms are written to file every fUpdatingRate events
181   //Also fills profiles to study the stability of supermodules during runs.
182
183   Init();
184   
185 //   TH1F* gHighGain = 0;
186 //   TH1F* gLowGain = 0;
187   const Int_t buffersize=128;
188   char hname[buffersize];
189   Int_t iEvent = 0;
190   Int_t runNum = 0;
191   Int_t nProfFreq = 1000; //Number of events with which a bin of the TProfile if filled
192   Int_t nEvtBins = 1000; //Total number of the profile survey bins.
193
194   AliCaloRawStreamV3 in(fRawReader,"EMCAL");
195
196   // Read raw data event by event
197
198   while (fRawReader->NextEvent()) {
199     runNum = fRawReader->GetRunNumber();
200
201     while (in.NextDDL()) {
202       while (in.NextChannel()) {
203
204         if(fSMInstalled[in.GetModule()]==kFALSE) continue;
205
206         // loop over samples
207         int nsamples = 0;
208         Int_t maxSample = 0;
209         while (in.NextBunch()) {
210           const UShort_t *sig = in.GetSignals();
211           nsamples += in.GetBunchLength();
212           for (Int_t i = 0; i < in.GetBunchLength(); i++) {
213             if (sig[i] > maxSample) maxSample = sig[i];
214           }
215         } // bunches
216
217         if (nsamples > 0) { // this check is needed for when we have zero-supp. on, but not sparse readout
218
219         // indices
220         Int_t mod = in.GetModule();
221         Int_t col = in.GetColumn();
222         Int_t row = in.GetRow();
223         Int_t evtbin = iEvent/nProfFreq;
224         Bool_t HighGainFlag = in.IsHighGain();
225         
226         //Check if histogram/profile already exist, if not create it.
227         if(!fAmpHisto[mod][col][row]) {
228           snprintf(hname,buffersize,"mod%dcol%drow%d",mod,col,row);
229           fAmpHisto[mod][col][row] = new TH1F(hname,hname,1024,-0.5,1023.);
230         }
231         if(!fAmpProf[mod]) {
232           snprintf(hname,buffersize,"mod%d",mod);
233           fAmpProf[mod] = new TProfile(hname,hname,nEvtBins,0.,nEvtBins);
234         }
235                 
236         //Fill histogram/profile 
237         if(HighGainFlag) {
238           fAmpHisto[mod][col][row]->Fill(maxSample);
239           fAmpProf[mod]->Fill(evtbin, maxSample);
240         }
241
242       } // nsamples>0 check, some data found for this channel; not only trailer/header
243
244       } // channels
245     } // DDL's
246
247     // update histograms in local file every 100th event
248     if(iEvent%fUpdatingRate == 0) {
249       AliInfo(Form("Updating histo file, event %d, run %d\n",iEvent,runNum));
250       UpdateHistoFile();
251     } 
252     iEvent++;
253   }
254
255   UpdateHistoFile(); 
256   AliInfo(Form("%d events of run %d processed.",iEvent,runNum));
257 }
258
259 //-----------------------------------------------------------------------------
260 void AliEMCALCalibHistoProducer::UpdateHistoFile()
261 {
262   // Write histograms to file
263
264   if(!fHistoFile) return;
265   if(!fHistoFile->IsOpen()) return;
266
267   TH1F* hist=0;
268   TProfile* prof =0;
269  
270   Int_t nRow =  fNCellsPhi ;
271   for(Int_t supermodule=0; supermodule<fNSuperModules; supermodule++) {
272     
273     prof = fAmpProf[supermodule]; 
274     if(prof) prof->Write(prof->GetName(),TObject::kWriteDelete);
275     
276     if(supermodule > 10)  nRow = fNCellsPhiHalfSM ; //Supermodules 11 and 12 are half supermodules
277     for(Int_t column=0; column<fNCellsEta; column++) {
278       for(Int_t row=0; row<nRow; row++) {
279         hist = fAmpHisto[supermodule][column][row]; 
280         if(hist) hist->Write(hist->GetName(),TObject::kWriteDelete);
281       }
282     }
283   }
284   
285 }