]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/ZDCEMDda.cxx
Move const in the right position
[u/mrichter/AliRoot.git] / ZDC / ZDCEMDda.cxx
CommitLineData
f16f149b 1/*
2
442e1b18 3This program reads the DAQ data files passed as argument using the monitoring library.
f16f149b 4
442e1b18 5It computes the average event size and populates local "./result.txt" file with the
6result.
f16f149b 7
442e1b18 8The program reports about its processing progress.
f16f149b 9
10Messages on stdout are exported to DAQ log system.
11
442e1b18 12DA for ZDC standalone pedestal runs
13
ea628de7 14Contact: Chiara.Oppedisano@to.infn.it
442e1b18 15Link:
ea628de7 16Run Type: STANDALONE_EMD_RUN
442e1b18 17DA Type: LDC
18Number of events needed: at least ~5*10^3
ea628de7 19Input Files: ZDCPedestal.dat
442e1b18 20Output Files: ZDCEMDCalib.dat, ZDCChMapping.dat
ea628de7 21Trigger Types Used: Standalone Trigger
f16f149b 22
23*/
78beff0d 24#define PEDDATA_FILE "ZDCPedestal.dat"
218f916a 25#define MAPDATA_FILE "ZDCChMapping.dat"
26#define EMDDATA_FILE "ZDCEMDCalib.dat"
f16f149b 27
28#include <stdio.h>
29#include <Riostream.h>
442e1b18 30#include <Riostream.h>
f16f149b 31
32// DATE
33#include <daqDA.h>
34#include <event.h>
35#include <monitor.h>
36
37//ROOT
38#include <TRandom.h>
39#include <TH1F.h>
40#include <TH2F.h>
41#include <TProfile.h>
42#include <TF1.h>
43#include <TFile.h>
442e1b18 44#include <TFitter.h>
f16f149b 45
46//AliRoot
47#include <AliRawReaderDate.h>
442e1b18 48#include <AliRawEventHeaderBase.h>
f16f149b 49#include <AliZDCRawStream.h>
50
51
52/* Main routine
53 Arguments:
54 1- monitoring data source
55*/
56int main(int argc, char **argv) {
57
442e1b18 58 TFitter *minuitFit = new TFitter(4);
59 TVirtualFitter::SetFitter(minuitFit);
60
61 int status = 0;
62
63 /* log start of process */
64 printf("ZDC EMD program started\n");
65
66 /* check that we got some arguments = list of files */
67 if (argc<2) {
68 printf("Wrong number of arguments\n");
69 return -1;
70 }
71
f16f149b 72 //
73 // --- Preparing histos for EM dissociation spectra
74 //
75 TH1F* histoEMDRaw[4];
76 TH1F* histoEMDCorr[4];
77
78 char namhistr[50], namhistc[50];
79 for(Int_t i=0; i<4; i++) {
80 if(i==0){
81 sprintf(namhistr,"ZN%d-EMDRaw",i+1);
82 sprintf(namhistc,"ZN%d-EMDCorr",i+1);
83 }
84 else if(i==1){
85 sprintf(namhistr,"ZP%d-EMDRaw",i);
86 sprintf(namhistc,"ZP%d-EMDCorr",i);
87 }
88 else if(i==2){
89 sprintf(namhistr,"ZN%d-EMDRaw",i);
90 sprintf(namhistc,"ZN%d-EMDCorr",i);
91 }
92 else if(i==3){
93 sprintf(namhistr,"ZP%d-EMDRaw",i-1);
94 sprintf(namhistc,"ZP%d-EMDCorr",i-1);
95 }
96 histoEMDRaw[i] = new TH1F(namhistr,namhistr,100,0.,4000.);
97 histoEMDCorr[i] = new TH1F(namhistc,namhistc,100,0.,4000.);
98 }
99
f16f149b 100 /* open result file */
101 FILE *fp=NULL;
102 fp=fopen("./result.txt","a");
103 if (fp==NULL) {
104 printf("Failed to open file\n");
105 return -1;
106 }
107
442e1b18 108 FILE *mapFile4Shuttle;
218f916a 109
78beff0d 110 // *** To analyze LASER events you MUST have a pedestal data file!!!
111 // *** -> check if a pedestal run has been analyzied
112 int read = 0;
218f916a 113 read = daqDA_DB_getFile(PEDDATA_FILE,PEDDATA_FILE);
78beff0d 114 if(read){
115 printf("\t ERROR!!! ZDCPedestal.dat file NOT FOUND in DAQ db!!!\n");
f16f149b 116 return -1;
117 }
78beff0d 118 else printf("\t ZDCPedestal.dat file retrieved from DAQ db\n");
119
120 FILE *filePed = fopen(PEDDATA_FILE,"r");
121 if (filePed==NULL) {
122 printf("\t ERROR!!! Can't open ZDCPedestal.dat file!!!\n");
f16f149b 123 return -1;
124 }
125
78beff0d 126 // 144 = 48 in-time + 48 out-of-time + 48 correlations
127 Float_t readValues[2][144], MeanPed[44], MeanPedWidth[44],
128 MeanPedOOT[44], MeanPedWidthOOT[44];
129 // ***************************************************
130 // Unless we have a narrow correlation to fit we
131 // don't fit and store in-time vs. out-of-time
132 // histograms -> mean pedstal subtracted!!!!!!
133 // ***************************************************
134 //Float_t CorrCoeff0[44], CorrCoeff1[44];
135 //
136 for(int jj=0; jj<144; jj++){
137 for(int ii=0; ii<2; ii++){
138 fscanf(filePed,"%f",&readValues[ii][jj]);
139 }
140 if(jj<48){
141 MeanPed[jj] = readValues[0][jj];
142 MeanPedWidth[jj] = readValues[1][jj];
143 //printf("\t MeanPed[%d] = %1.1f\n",jj, MeanPed[jj]);
144 }
145 else if(jj>48 && jj<96){
146 MeanPedOOT[jj-48] = readValues[0][jj];
147 MeanPedWidthOOT[jj-48] = readValues[1][jj];
148 }
149 /*else if(jj>144){
150 CorrCoeff0[jj-96] = readValues[0][jj];
151 CorrCoeff1[jj-96] = readValues[1][jj];;
152 }
153 */
154 }
f16f149b 155
442e1b18 156 /* report progress */
157 daqDA_progressReport(10);
158
159
f16f149b 160 /* init some counters */
161 int nevents_physics=0;
162 int nevents_total=0;
163
442e1b18 164 /* read the data files */
165 int n;
166 for(n=1;n<argc;n++){
167
168 status=monitorSetDataSource( argv[n] );
f16f149b 169 if (status!=0) {
442e1b18 170 printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
171 return -1;
f16f149b 172 }
173
442e1b18 174 /* report progress */
175 /* in this example, indexed on the number of files */
176 daqDA_progressReport(10+80*n/argc);
177
178 /* read the file */
179 for(;;){
180 struct eventHeaderStruct *event;
181 eventTypeType eventT;
f16f149b 182
442e1b18 183 /* get next event */
184 status=monitorGetEventDynamic((void **)&event);
185 if(status==MON_ERR_EOF) break; /* end of monitoring file has been reached */
186 if(status!=0) {
187 printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
188 return -1;
189 }
f16f149b 190
442e1b18 191 /* retry if got no event */
192 if(event==NULL) {
193 break;
194 }
195
196 // Initalize raw-data reading and decoding
197 AliRawReader *reader = new AliRawReaderDate((void*)event);
198 reader->Select("ZDC");
199 // --- Reading event header
200 //UInt_t evtype = reader->GetType();
201 //printf("\n\t ZDCEMDda -> ev. type %d\n",evtype);
202 //printf("\t ZDCEMDda -> run # %d\n",reader->GetRunNumber());
203 //
204 AliZDCRawStream *rawStreamZDC = new AliZDCRawStream(reader);
205
206
207 /* use event - here, just write event id to result file */
208 eventT=event->eventType;
209
210 Int_t ich=0, adcMod[48], adcCh[48], sigCode[48], det[48], sec[48];
211 if(eventT==START_OF_DATA){
7f4bde92 212
213 rawStreamZDC->SetSODReading(kTRUE);
442e1b18 214
215 if(!rawStreamZDC->Next()) printf(" \t No raw data found!! \n");
216 else{
217 while(rawStreamZDC->Next()){
218 if(rawStreamZDC->IsChMapping()){
219 adcMod[ich] = rawStreamZDC->GetADCModFromMap(ich);
220 adcCh[ich] = rawStreamZDC->GetADCChFromMap(ich);
221 sigCode[ich] = rawStreamZDC->GetADCSignFromMap(ich);
222 det[ich] = rawStreamZDC->GetDetectorFromMap(ich);
223 sec[ich] = rawStreamZDC->GetTowerFromMap(ich);
224 ich++;
225 }
226 }
227 }
228 // --------------------------------------------------------
229 // --- Writing ascii data file for the Shuttle preprocessor
218f916a 230 mapFile4Shuttle = fopen(MAPDATA_FILE,"w");
442e1b18 231 for(Int_t i=0; i<ich; i++){
232 fprintf(mapFile4Shuttle,"\t%d\t%d\t%d\t%d\t%d\t%d\n",i,
233 adcMod[i],adcCh[i],sigCode[i],det[i],sec[i]);
234 //
235 //printf("ZDCPEDESTALDA.cxx -> ch.%d mod %d, ch %d, code %d det %d, sec %d\n",
236 // i,adcMod[i],adcCh[i],sigCode[i],det[i],sec[i]);
237 }
238 fclose(mapFile4Shuttle);
239 }
f16f149b 240
241 if(eventT==PHYSICS_EVENT){
78beff0d 242 // --- Reading data header
243 reader->ReadHeader();
f16f149b 244 const AliRawDataHeader* header = reader->GetDataHeader();
245 if(header){
ea628de7 246 UChar_t message = header->GetAttributes();
247 if(message & 0x70){ // DEDICATED EMD RUN
442e1b18 248 //printf("\t STANDALONE_EMD_RUN raw data found\n");
ea628de7 249 continue;
250 }
251 else{
252 printf("\t NO STANDALONE_EMD_RUN raw data found\n");
253 return -1;
254 }
f16f149b 255 }
442e1b18 256 else{
257 printf("\t ATTENTION! No Raw Data Header found!!!\n");
258 return -1;
259 }
7f4bde92 260
261 rawStreamZDC->SetSODReading(kTRUE);
442e1b18 262
f16f149b 263 if (!rawStreamZDC->Next()) printf(" \t No raw data found!! ");
264 //
442e1b18 265 // ----- Setting ch. mapping -----
266 for(Int_t jk=0; jk<48; jk++){
267 rawStreamZDC->SetMapADCMod(jk, adcMod[jk]);
268 rawStreamZDC->SetMapADCCh(jk, adcCh[jk]);
269 rawStreamZDC->SetMapADCSig(jk, sigCode[jk]);
270 rawStreamZDC->SetMapDet(jk, det[jk]);
271 rawStreamZDC->SetMapTow(jk, sec[jk]);
272 }
273 //
f16f149b 274 Float_t ZDCRawADC[4], ZDCCorrADC[4], ZDCCorrADCSum[4];
275 for(Int_t g=0; g<4; g++){
276 ZDCCorrADCSum[g] = 0.;
277 ZDCRawADC[g] = 0.;
278 }
279 //
280 while(rawStreamZDC->Next()){
281 if(rawStreamZDC->IsADCDataWord()){
ea628de7 282 Int_t DetIndex=999, PedIndex=999;
283 if(rawStreamZDC->GetSector(0) == 1 || rawStreamZDC->GetSector(0) == 2){
f16f149b 284 DetIndex = rawStreamZDC->GetSector(0)-1;
ea628de7 285 PedIndex = (rawStreamZDC->GetSector(0)+1)+4*rawStreamZDC->GetSector(1);
286 }
287 else if(rawStreamZDC->GetSector(0) == 4 || rawStreamZDC->GetSector(0) == 5){
f16f149b 288 DetIndex = rawStreamZDC->GetSector(0)-2;
ea628de7 289 PedIndex = (rawStreamZDC->GetSector(0)-2)+4*rawStreamZDC->GetSector(1)+24;
290 }
291 //
f16f149b 292 if(rawStreamZDC->GetADCGain() == 1){ //EMD -> LR ADC
293 //
294 ZDCRawADC[DetIndex] += (Float_t) rawStreamZDC->GetADCValue();
f16f149b 295 // Mean pedestal subtraction
296 Float_t Pedestal = MeanPed[PedIndex];
297 // Pedestal subtraction from correlation with out-of-time signals
ea628de7 298 //Float_t Pedestal = CorrCoeff0[PedIndex]+CorrCoeff1[PedIndex]*MeanPedOOT[PedIndex];
f16f149b 299 //
300 ZDCCorrADC[DetIndex] = (rawStreamZDC->GetADCValue()) - Pedestal;
301 ZDCCorrADCSum[DetIndex] += ZDCCorrADC[DetIndex];
ea628de7 302 //
303 /*printf("\t det %d quad %d res %d pedInd %d ADCCorr %d ZDCCorrADCSum[%d] = %d\n",
304 rawStreamZDC->GetSector(0),rawStreamZDC->GetSector(1),
305 rawStreamZDC->GetADCGain(),PedIndex,
306 (Int_t) (rawStreamZDC->GetADCValue() - Pedestal), DetIndex,
307 (Int_t) ZDCCorrADCSum[DetIndex]);
308 */
309 }
f16f149b 310 }//IsADCDataWord()
311 //
312 }
313 //
314 nevents_physics++;
315 //
316 for(Int_t j=0; j<4; j++){
317 histoEMDRaw[j]->Fill(ZDCRawADC[j]);
318 histoEMDCorr[j]->Fill(ZDCCorrADCSum[j]);
319 }
320 }
321
322 nevents_total++;
323
f16f149b 324 /* free resources */
325 free(event);
326
327 /* exit when last event received, no need to wait for TERM signal */
328 if (eventT==END_OF_RUN) {
329 printf("EOR event detected\n");
330 break;
331 }
442e1b18 332
333 }
f16f149b 334 }
442e1b18 335
f16f149b 336 /* Analysis of the histograms */
337 //
338 FILE *fileShuttle;
218f916a 339 fileShuttle = fopen(EMDDATA_FILE,"w");
f16f149b 340 //
341 Int_t BinMax[4];
342 Float_t YMax[4];
343 Int_t NBinsx[4];
344 Float_t MeanFitVal[4];
345 TF1 *fitfun[4];
346 for(Int_t k=0; k<4; k++){
347 BinMax[k] = histoEMDCorr[k]->GetMaximumBin();
348 YMax[k] = (histoEMDCorr[k]->GetXaxis())->GetXmax();
349 NBinsx[k] = (histoEMDCorr[k]->GetXaxis())->GetNbins();
ea628de7 350// printf("\n\t Det%d -> BinMax = %d, ChXMax = %f\n", k+1, BinMax[k], BinMax[k]*YMax[k]/NBinsx[k]);
f16f149b 351 histoEMDCorr[k]->Fit("gaus","Q","",BinMax[k]*YMax[k]/NBinsx[k]*0.7,BinMax[k]*YMax[k]/NBinsx[k]*1.25);
352 fitfun[k] = histoEMDCorr[k]->GetFunction("gaus");
353 MeanFitVal[k] = (Float_t) (fitfun[k]->GetParameter(1));
c38bc7ef 354 //printf("\n\t Mean Value from gaussian fit = %f\n", MeanFitVal[k]);
f16f149b 355 }
356 //
218f916a 357 Float_t CalibCoeff[6];
358 Float_t icoeff[5];
359 //
360 for(Int_t j=0; j<10; j++){
361 if(j<4){
362 CalibCoeff[j] = MeanFitVal[j];
363 fprintf(fileShuttle,"\t%f\n",CalibCoeff[j]);
364 }
365 // ZEM calib. coeff. = 1
366 else if(j==4 || j==5){
367 CalibCoeff[j] = 1.;
368 fprintf(fileShuttle,"\t%f\n",CalibCoeff[j]);
369 }
370 // Note -> For the moment the inter-calibration
371 // coefficients are set to 1
372 else if(j>5){
373 for(Int_t k=0; k<5; k++){
374 icoeff[k] = 1.;
375 fprintf(fileShuttle,"\t%f",icoeff[k]);
376 if(k==4) fprintf(fileShuttle,"\n");
377 }
378 }
f16f149b 379 }
380 //
381 fclose(fileShuttle);
382
442e1b18 383 for(Int_t ij=0; ij<4; ij++){
384 delete histoEMDRaw[ij];
385 delete histoEMDCorr[ij];
386 }
387
388 //delete minuitFit;
389 TVirtualFitter::SetFitter(0);
f16f149b 390
391 /* write report */
392 fprintf(fp,"Run #%s, received %d physics events out of %d\n",getenv("DATE_RUN_NUMBER"),nevents_physics,nevents_total);
393
394 /* close result file */
395 fclose(fp);
442e1b18 396
397 /* report progress */
398 daqDA_progressReport(90);
399
400 /* store the result file on FES */
218f916a 401 status = daqDA_FES_storeFile(MAPDATA_FILE, MAPDATA_FILE);
442e1b18 402 if(status){
403 printf("Failed to export file : %d\n",status);
404 return -1;
405 }
406 //
218f916a 407 status = daqDA_FES_storeFile(EMDDATA_FILE, EMDDATA_FILE);
442e1b18 408 if(status){
409 printf("Failed to export file : %d\n",status);
410 return -1;
411 }
f16f149b 412
442e1b18 413 /* report progress */
414 daqDA_progressReport(100);
f16f149b 415
416 return status;
417}