]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/T0Physda.cxx
Reconstruction with measused calibration
[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 *hCFD1minCFD[24];  
122   TH1F *hCFD[24];
123    
124    for(Int_t ic=0; ic<24; ic++) {
125       if(ic<12) {
126         hCFD1minCFD[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         hCFD1minCFD[ic] = new TH1F(Form("CFD1-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 //      case CALIBRATION_EVENT:
178       iev++;
179
180       if(iev==1){
181            printf("First event - %i\n",iev);
182       }
183
184 //      printf(" event number = %i \n",iev);
185
186       // Initalize raw-data reading and decoding
187       AliRawReader *reader = new AliRawReaderDate((void*)event);
188           
189       // Enable the following two lines in case of real-data
190    //       reader->LoadEquipmentIdsMap("T0map.txt");
191     //     reader->RequireHeader(kFALSE);
192      //           reader->RequireHeader(kTRUE);
193       AliT0RawReader *start = new AliT0RawReader(reader, kTRUE);
194
195       // Read raw data
196       Int_t allData[105][5];
197       for(Int_t i0=0;i0<105;i0++)
198         for(Int_t j0=0;j0<5;j0++)
199                 allData[i0][j0] = 0;
200  
201      
202       if(start->Next())
203       for (Int_t i=0; i<105; i++) {
204         for(Int_t iHit=0;iHit<5;iHit++){
205           allData[i][iHit]= start->GetData(i,iHit);
206         }
207       }
208         else 
209         printf("No T0 data found!!\n");
210
211       // Fill the histograms
212         
213       for (Int_t ik = 0; ik<24; ik++)
214          for (Int_t iHt=0; iHt<5; iHt++){
215                 if(allData[ik+1][iHt]!=0 ){
216                   if(ik<12){
217                          hCFD1minCFD[ik]->Fill(allData[ik+1][iHt]-allData[1][iHt]);
218                          hCFD[ik]->Fill(allData[ik+13][iHt]);
219                   }
220                   if(ik>11){
221                          hCFD1minCFD[ik]->Fill(allData[ik+45][iHt]-allData[57][iHt]);
222                          hCFD[ik]->Fill(allData[ik+45][iHt]);
223                   }
224                 }
225         }
226
227
228      delete start;
229         start = 0x0;
230      reader->Reset();
231       // End of fill histograms
232
233     }
234
235
236
237     /* free resources */
238     free(event);
239     
240     /* exit when last event received, no need to wait for TERM signal */
241     if (eventT==END_OF_RUN) {
242       printf("EOR event detected\n");
243       printf("Number of events processed - %i\n ",iev);         
244       break;
245     }
246   }
247   printf("After loop, before writing histos\n");
248   // write a file with the histograms
249   TFile *hist = new TFile(FILE_OUT,"RECREATE");
250
251   for(Int_t j=0;j<24;j++){
252      hCFD1minCFD[j]->Write();
253      hCFD[j]->Write();  
254     }
255   hist->Close();
256   delete hist;
257
258   status=0;
259
260   /* export file to FXS */
261   if (daqDA_FES_storeFile(FILE_OUT, FILE_OUT)) {
262     status=-2;
263   }
264
265   return status;
266 }
267
268