]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/PHOSLEDda.cxx
Bug fix: AliHLTComponent::ConfigureFromArgumentString
[u/mrichter/AliRoot.git] / PHOS / PHOSLEDda.cxx
CommitLineData
68aaec35 1/*
2contact: Boris.Polishchuk@cern.ch
3link: see comments in the $ALICE_ROOT/PHOS/AliPHOSRcuDA1.cxx
567f4fbc 4reference run: /alice/data/2009/LHC09b_PHOS/000075883/raw/09000075883017.20.root
5run type: LED
68aaec35 6DA type: MON
7number of events needed: 1000
750abcc8 8input files: Mod0RCU0.data Mod0RCU1.data Mod0RCU2.data Mod0RCU3.data Mod1RCU0.data Mod1RCU1.data Mod1RCU2.data Mod1RCU3.data Mod2RCU0.data Mod2RCU1.data Mod2RCU2.data Mod2RCU3.data Mod3RCU0.data Mod3RCU1.data Mod3RCU2.data Mod3RCU3.data Mod4RCU0.data Mod4RCU1.data Mod4RCU2.data Mod4RCU3.data zs.txt
e57c0b30 9Output files: PHOS_LED.root.
68aaec35 10Trigger types used: CALIBRATION_EVENT
11*/
12
13
14#include "event.h"
15#include "monitor.h"
16extern "C" {
17#include "daqDA.h"
18}
19
20#include <stdio.h>
21#include <stdlib.h>
22
23#include <TSystem.h>
24#include <TROOT.h>
25#include <TPluginManager.h>
26
27#include "AliRawReader.h"
28#include "AliRawReaderDate.h"
29#include "AliPHOSRcuDA1.h"
8083e819 30#include "AliPHOSRawFitterv0.h"
68aaec35 31#include "AliCaloAltroMapping.h"
8083e819 32#include "AliCaloRawStreamV3.h"
567f4fbc 33#include "AliLog.h"
68aaec35 34
35
36/* Main routine
37 Arguments:
38 1- monitoring data source
39*/
40int main(int argc, char **argv) {
41
42 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
43 "*",
44 "TStreamerInfo",
45 "RIO",
46 "TStreamerInfo()");
47
567f4fbc 48 AliLog::SetGlobalDebugLevel(0) ;
49 AliLog::SetGlobalLogLevel(AliLog::kFatal);
50
68aaec35 51 int status;
52
53 if (argc!=2) {
54 printf("Wrong number of arguments\n");
55 return -1;
56 }
57
f4333ce5 58 /* Retrieve ZS parameters from DAQ DB */
59 const char* zsfile = "zs.txt";
60 int failZS = daqDA_DB_getFile(zsfile, zsfile);
61
750abcc8 62 short offset,threshold;
f4333ce5 63
64 if(!failZS) {
65 FILE *f = fopen(zsfile,"r");
66 int scan = fscanf(f,"%d %d",&offset,&threshold);
67 }
750abcc8 68
68aaec35 69 /* Retrieve mapping files from DAQ DB */
750abcc8 70 const char* mapFiles[20] = {
71 "Mod0RCU0.data",
72 "Mod0RCU1.data",
73 "Mod0RCU2.data",
74 "Mod0RCU3.data",
75 "Mod1RCU0.data",
76 "Mod1RCU1.data",
77 "Mod1RCU2.data",
78 "Mod1RCU3.data",
79 "Mod2RCU0.data",
80 "Mod2RCU1.data",
81 "Mod2RCU2.data",
82 "Mod2RCU3.data",
83 "Mod3RCU0.data",
84 "Mod3RCU1.data",
85 "Mod3RCU2.data",
86 "Mod3RCU3.data",
87 "Mod4RCU0.data",
88 "Mod4RCU1.data",
89 "Mod4RCU2.data",
90 "Mod4RCU3.data"
91 };
92
93 for(Int_t iFile=0; iFile<20; iFile++) {
68aaec35 94 int failed = daqDA_DB_getFile(mapFiles[iFile], mapFiles[iFile]);
95 if(failed) {
96 printf("Cannot retrieve file %s from DAQ DB. Exit.\n",mapFiles[iFile]);
97 return -1;
98 }
99 }
100
101 /* Open mapping files */
750abcc8 102 AliAltroMapping *mapping[20];
68aaec35 103 TString path = "./";
750abcc8 104
105 path += "Mod";
68aaec35 106 TString path2;
750abcc8 107 TString path3;
108 Int_t iMap = 0;
109
110 for(Int_t iMod = 0; iMod < 5; iMod++) {
68aaec35 111 path2 = path;
750abcc8 112 path2 += iMod;
113 path2 += "RCU";
114
115 for(Int_t iRCU=0; iRCU<4; iRCU++) {
116 path3 = path2;
117 path3 += iRCU;
118 path3 += ".data";
119 mapping[iMap] = new AliCaloAltroMapping(path3.Data());
120 iMap++;
121 }
68aaec35 122 }
123
68aaec35 124 /* define data source : this is argument 1 */
125 status=monitorSetDataSource( argv[1] );
126 if (status!=0) {
127 printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
128 return -1;
129 }
130
131
132 /* declare monitoring program */
133 status=monitorDeclareMp( __FILE__ );
134 if (status!=0) {
135 printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
136 return -1;
137 }
138
139
140 /* define wait event timeout - 1s max */
141 monitorSetNowait();
142 monitorSetNoWaitNetworkTimeout(1000);
143
144 /* init some counters */
145 int nevents_physics=0;
146 int nevents_total=0;
d62e649a 147
68aaec35 148 AliRawReader *rawReader = NULL;
d62e649a 149 AliPHOSRcuDA1* dAs[5];
68aaec35 150
d62e649a 151 for(Int_t iMod=0; iMod<5; iMod++) {
152 dAs[iMod] = 0;
153 }
154
68aaec35 155 Float_t e[64][56][2];
156 Float_t t[64][56][2];
2905f08d 157
158 for(Int_t iX=0; iX<64; iX++) {
159 for(Int_t iZ=0; iZ<56; iZ++) {
160 for(Int_t iGain=0; iGain<2; iGain++) {
161 e[iX][iZ][iGain] = 0.;
162 t[iX][iZ][iGain] = 0.;
163 }
164 }
165 }
166
8083e819 167 Int_t cellX = -1;
168 Int_t cellZ = -1;
169 Int_t nBunches = 0;
170 Int_t nFired = -1;
171 Int_t sigStart, sigLength;
d62e649a 172 Int_t caloFlag;
173
7708b003 174
175 TH1I fFiredCells("fFiredCells","Number of fired cells per event",100,0,1000);
68aaec35 176
177 /* main loop (infinite) */
178 for(;;) {
179 struct eventHeaderStruct *event;
180 eventTypeType eventT;
181
182 /* check shutdown condition */
183 if (daqDA_checkShutdown()) {break;}
184
185 /* get next event (blocking call until timeout) */
186 status=monitorGetEventDynamic((void **)&event);
187 if (status==MON_ERR_EOF) {
188 printf ("End of File detected\n");
189 break; /* end of monitoring file has been reached */
190 }
191
192 if (status!=0) {
193 printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
194 break;
195 }
196
197 /* retry if got no event */
198 if (event==NULL) {
199 continue;
200 }
201
202
203 /* use event - here, just write event id to result file */
204 eventT=event->eventType;
205
206 if (eventT==PHYSICS_EVENT) {
207
7708b003 208 nFired = 0;
d62e649a 209
68aaec35 210 rawReader = new AliRawReaderDate((void*)event);
8083e819 211 AliCaloRawStreamV3 stream(rawReader,"PHOS",mapping);
d62e649a 212 AliPHOSRawFitterv0 fitter;
8083e819 213 fitter.SubtractPedestals(kTRUE); // assume that data is non-ZS
f4333ce5 214
215 if(!failZS) {
216 fitter.SubtractPedestals(kFALSE);
217 fitter.SetAmpOffset(offset);
218 fitter.SetAmpThreshold(threshold);
219 }
68aaec35 220
8083e819 221 while (stream.NextDDL()) {
222 while (stream.NextChannel()) {
d62e649a 223
750abcc8 224 /* Retrieve ZS parameters from data*/
225 if(failZS) {
226 short value = stream.GetAltroCFG1();
227 bool ZeroSuppressionEnabled = (value >> 15) & 0x1;
228 bool AutomaticBaselineSubtraction = (value >> 14) & 0x1;
229 if(ZeroSuppressionEnabled) {
230 offset = (value >> 10) & 0xf;
231 threshold = value & 0x3ff;
232 fitter.SubtractPedestals(kFALSE);
233 fitter.SetAmpOffset(offset);
234 fitter.SetAmpThreshold(threshold);
235 }
236 }
237
8083e819 238 cellX = stream.GetCellX();
239 cellZ = stream.GetCellZ();
240 caloFlag = stream.GetCaloFlag(); // 0=LG, 1=HG, 2=TRU
d62e649a 241
2905f08d 242 if(caloFlag!=0 && caloFlag!=1) continue; //TRU data!
243
8083e819 244 // In case of oscillating signals with ZS, a channel can have several bunches
245 nBunches = 0;
246 while (stream.NextBunch()) {
247 nBunches++;
248 if (nBunches > 1) continue;
d62e649a 249 sigStart = stream.GetStartTimeBin();
250 sigLength = stream.GetBunchLength();
92236b27 251 fitter.SetChannelGeo(stream.GetModule(),cellX,cellZ,caloFlag);
252 fitter.Eval(stream.GetSignals(),sigStart,sigLength);
8083e819 253 } // End of NextBunch()
254
3a1a1539 255 if(nBunches != 1) continue;
8083e819 256
257 e[cellX][cellZ][caloFlag] = fitter.GetEnergy();
258 t[cellX][cellZ][caloFlag] = fitter.GetTime();
d62e649a 259
8083e819 260 if(caloFlag==1 && fitter.GetEnergy()>40)
261 nFired++;
262 }
d62e649a 263
2905f08d 264 if(stream.GetModule()<0 || stream.GetModule()>4) continue;
265
d62e649a 266 if(dAs[stream.GetModule()])
267 dAs[stream.GetModule()]->FillHistograms(e,t);
2905f08d 268 else {
d62e649a 269 dAs[stream.GetModule()] = new AliPHOSRcuDA1(stream.GetModule(),-1,0);
2905f08d 270 dAs[stream.GetModule()]->FillHistograms(e,t);
271 }
d62e649a 272
273 for(Int_t iX=0; iX<64; iX++) {
274 for(Int_t iZ=0; iZ<56; iZ++) {
275 for(Int_t iGain=0; iGain<2; iGain++) {
276 e[iX][iZ][iGain] = 0.;
277 t[iX][iZ][iGain] = 0.;
278 }
279 }
280 }
281
8083e819 282 }
d62e649a 283
7708b003 284 fFiredCells.Fill(nFired);
d62e649a 285
68aaec35 286 delete rawReader;
287 nevents_physics++;
288 }
289
290 nevents_total++;
291
292 /* free resources */
293 free(event);
294
295 /* exit when last event received, no need to wait for TERM signal */
296 if (eventT==END_OF_RUN) {
297 printf("EOR event detected\n");
298 break;
299 }
300 }
301
ed35ce87 302 for(Int_t i = 0; i < 20; i++) delete mapping[i];
68aaec35 303
304 /* Be sure that all histograms are saved */
68aaec35 305
306 const TH2F* h2=0;
307 const TH1F* h1=0;
d62e649a 308 char localfile[128];
68aaec35 309
310 Int_t nGood=0; // >10 entries in peak
311 Int_t nMax=-111; // max. number of entries in peak
312 Int_t iXmax=-1;
313 Int_t iZmax=-1;
d62e649a 314 Int_t iModMax=-1;
315
e57c0b30 316 sprintf(localfile,"PHOS_LED.root");
317 TFile* f = new TFile(localfile,"recreate");
318
d62e649a 319 for(Int_t iMod=0; iMod<5; iMod++) {
320 if(!dAs[iMod]) continue;
321
322 printf("DA1 for module %d detected.\n",iMod);
d62e649a 323
324 for(Int_t iX=0; iX<64; iX++) {
325 for(Int_t iZ=0; iZ<56; iZ++) {
326
327 h1 = dAs[iMod]->GetHgLgRatioHistogram(iX,iZ); // High Gain/Low Gain ratio
328 if(h1) {
329 if(h1->GetMaximum()>10.) nGood++;
330 if(h1->GetMaximum()>nMax) {
331 nMax = (Int_t)h1->GetMaximum(); iXmax=iX; iZmax=iZ; iModMax=iMod;
332 }
333 h1->Write();
334 }
68aaec35 335
d62e649a 336 for(Int_t iGain=0; iGain<2; iGain++) {
337 h2 = dAs[iMod]->GetTimeEnergyHistogram(iX,iZ,iGain); // Time vs Energy
338 if(h2) h2->Write();
339 }
e57c0b30 340
68aaec35 341 }
68aaec35 342 }
d62e649a 343
e57c0b30 344 fFiredCells.Write();
68aaec35 345 }
346
e57c0b30 347 f->Close();
348
349 /* Store output files to the File Exchange Server */
350 daqDA_FES_storeFile(localfile,"LED");
351
68aaec35 352 printf("%d physics events of %d total processed.\n",nevents_physics,nevents_total);
353 printf("%d histograms has >10 entries in maximum, max. is %d entries ",nGood,nMax);
d62e649a 354 printf("(module,iX,iZ)=(%d,%d,%d)",iModMax,iXmax,iZmax);
68aaec35 355 printf("\n");
356
357 return status;
358}