]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/T0Physda.cxx
e0d47b18004835d566f59504eaaf172a2319b99b
[u/mrichter/AliRoot.git] / T0 / T0Physda.cxx
1 /*
2 T0 DA for online calibration
3
4 Contact: Michal.Oledzki@cern.ch
5 Link: http://users.jyu.fi/~mioledzk/
6 Run Type: PHYSICS
7 DA Type: MON
8 Number of events needed: 500000 
9 Input Files: inPhys.dat, external parameters
10 Output Files: daPhys.root, to be exported to the DAQ FXS
11 Trigger types used: PHYSICS_EVENT
12
13 */
14
15 #define FILE_OUT "daPhys.root"
16 #define FILE_IN "inPhys.dat"
17 #include <daqDA.h>
18 #include <event.h>
19 #include <monitor.h>
20  
21 #include <Riostream.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 //AliRoot
26 #include <AliRawReaderDate.h>
27 #include <AliRawReader.h>
28 #include <AliT0RawReader.h>
29
30 //ROOT
31 #include "TROOT.h"
32 #include "TPluginManager.h"
33 #include "TFile.h"
34 #include "TKey.h"
35 #include "TH2S.h"
36 #include "TObject.h"
37 #include "TBenchmark.h"
38 #include "TRandom.h"
39 #include "TCanvas.h"
40 #include "TString.h"
41 #include "TH1.h"
42 #include "TF1.h"
43 #include "TSpectrum.h"
44 #include "TVirtualFitter.h"
45 int cbx, ccbx;
46 float clx,cmx,cclx,ccmx;
47
48 /* Main routine
49       Arguments: 
50       1- monitoring data source
51 */
52 int main(int argc, char **argv) {
53 //int main(){
54   int status;
55
56   /* magic line */
57   gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
58                                         "*",
59                                         "TStreamerInfo",
60                                         "RIO",
61                                         "TStreamerInfo()");
62
63   if(daqDA_DB_getFile(FILE_IN, FILE_IN)){
64      printf("Couldn't get input file >>inPhys.dat<< from DAQ_DB !!!\n");
65      return -1;
66   }
67
68   
69   FILE *inp;
70   char c;
71   inp = fopen(FILE_IN, "r");
72   if(!inp){
73         printf("Input file >>inPhys.dat<< not found !!!\n");
74         return -1;
75   }
76
77   while((c=getc(inp))!=EOF) {
78     switch(c) {
79       case 'a': {fscanf(inp, "%d", &ccbx ); break;} //N of X bins hCFD1_CFD
80       case 'b': {fscanf(inp, "%f", &cclx ); break;} //Low x hCFD1_CFD
81       case 'c': {fscanf(inp, "%f", &ccmx ); break;} //High x hCFD1_CFD
82       case 'd': {fscanf(inp, "%d", &cbx ); break;} //N of X bins hCFD
83       case 'e': {fscanf(inp, "%f", &clx ); break;} //Low x hCFD
84       case 'f': {fscanf(inp, "%f", &cmx ); break;} //High x hCFD
85     }
86   }
87   fclose(inp);
88
89   if (argc!=2) {
90     printf("Wrong number of arguments\n");
91     return -1;
92   }
93
94
95   /* define data source : this is argument 1 */  
96   status=monitorSetDataSource( argv[1] );
97   if (status!=0) {
98     printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
99     return -1;
100   }
101
102
103   /* declare monitoring program */
104   status=monitorDeclareMp( __FILE__ );
105   if (status!=0) {
106     printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
107     return -1;
108   }
109
110
111   /* define wait event timeout - 1s max */
112   monitorSetNowait();
113   monitorSetNoWaitNetworkTimeout(1000);
114   
115
116   /* log start of process */
117   printf("T0 monitoring program started\n");  
118
119   // Allocation of histograms - start
120
121   TH1F *hCFD1_CFD[24];  
122   TH1F *hCFD[24];
123    
124    for(Int_t ic=0; ic<24; ic++) {
125       if(ic<12) {
126         hCFD1_CFD[ic] = new TH1F(Form("CFD1-CFD%d",ic+1),"CFD-CFD",ccbx,cclx,ccmx);
127         hCFD[ic] = new TH1F(Form("CFD%i",ic+1),"CFD",cbx,clx,cmx);
128         }
129       if(ic>11){
130         hCFD1_CFD[ic] = new TH1F(Form("CFD13-CFD%i",ic+1),"CFD-CFD",ccbx,cclx,ccmx);
131         hCFD[ic] = new TH1F(Form("CFD%i",ic+1),"CFD",cbx,clx,cmx);
132         }
133     }
134
135   // Allocation of histograms - end
136
137   Int_t iev=0;
138   /* main loop (infinite) */
139   for(;;) {
140     struct eventHeaderStruct *event;
141     eventTypeType eventT;
142   
143     /* check shutdown condition */
144     if (daqDA_checkShutdown()) {break;}
145     
146     /* get next event (blocking call until timeout) */
147     status=monitorGetEventDynamic((void **)&event);
148     if (status==(int)MON_ERR_EOF) {
149       printf ("End of File detected\n");
150       break; /* end of monitoring file has been reached */
151     }
152     
153     if (status!=0) {
154       printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
155       break;
156     }
157
158     /* retry if got no event */
159     if (event==NULL) {
160       continue;
161     }
162  
163 //    iev++; 
164
165     /* use event - here, just write event id to result file */
166     eventT=event->eventType;
167    
168     switch (event->eventType){
169
170       case START_OF_RUN:
171         break;
172
173       case END_OF_RUN:
174         break;
175
176       case PHYSICS_EVENT:
177       iev++;
178
179       if(iev==1){
180            printf("First event - %i\n",iev);
181       }
182
183 //      printf(" event number = %i \n",iev);
184
185       // Initalize raw-data reading and decoding
186       AliRawReader *reader = new AliRawReaderDate((void*)event);
187           
188       // Enable the following two lines in case of real-data
189    //       reader->LoadEquipmentIdsMap("T0map.txt");
190     //     reader->RequireHeader(kFALSE);
191      //           reader->RequireHeader(kTRUE);
192       AliT0RawReader *start = new AliT0RawReader(reader, kTRUE);
193
194       // Read raw data
195       Int_t allData[105][5];
196       for(Int_t i0=0;i0<105;i0++)
197         for(Int_t j0=0;j0<5;j0++)
198                 allData[i0][j0] = 0;
199  
200      
201       if(start->Next())
202       for (Int_t i=0; i<105; i++) {
203         for(Int_t iHit=0;iHit<5;iHit++){
204           allData[i][iHit]= start->GetData(i,iHit);
205         }
206       }
207         else 
208         printf("No T0 data found!!\n");
209
210       // Fill the histograms
211         
212       for (Int_t ik = 0; ik<24; ik+=2)
213          for (Int_t iHt=0; iHt<5; iHt++){
214                  Int_t cc = ik/2;
215                 if(allData[cc+1][iHt]!=0 ){
216                  hCFD1_CFD[cc]->Fill(allData[cc+1][iHt]-allData[1][iHt]);
217                  hCFD[cc]->Fill(allData[cc+13][iHt]);
218                 }
219         }
220
221       for (Int_t ik = 24; ik<48; ik+=2)
222          for (Int_t iHt=0; iHt<5; iHt++){
223                  Int_t cc = ik/2; 
224                 if(allData[cc+45][iHt]!=0 ){
225                  hCFD1_CFD[cc]->Fill(allData[cc+45][iHt]-allData[57][iHt]);
226                  hCFD[cc]->Fill(allData[cc+45][iHt]);
227                 }
228         }
229
230      delete start;
231         start = 0x0;
232      reader->Reset();
233       // End of fill histograms
234
235     }
236
237
238
239     /* free resources */
240     free(event);
241     
242     /* exit when last event received, no need to wait for TERM signal */
243     if (eventT==END_OF_RUN) {
244       printf("EOR event detected\n");
245       printf("Number of events processed - %i\n ",iev);         
246       break;
247     }
248   }
249   printf("After loop, before writing histos\n");
250   // write a file with the histograms
251   TFile *hist = new TFile(FILE_OUT,"RECREATE");
252
253   for(Int_t j=0;j<24;j++){
254      hCFD1_CFD[j]->Write();
255      hCFD[j]->Write();  
256     }
257   hist->Close();
258   delete hist;
259
260   status=0;
261
262   /* export file to FXS */
263   if (daqDA_FES_storeFile(FILE_OUT, FILE_OUT)) {
264     status=-2;
265   }
266
267   return status;
268 }
269
270