]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TRD/TRDVDRIFTda.cxx
Adding macros for ACORDE: sim&rec, read raw-data,esd & hits (*.C macros and AliAnalys...
[u/mrichter/AliRoot.git] / TRD / TRDVDRIFTda.cxx
... / ...
CommitLineData
1/*
2
3Contact: r.bailhache@gsi.de
4Link:
5Reference run: 25909
6Run Type: PHYSICS STANDALONE
7DA Type: MON
8Number of events needed: many
9Input Files: TRD raw files
10Output Files: trdCalibrationv.root
11Trigger types used: PHYSICS_EVENT
12
13*/
14
15#define RESULT_FILE "trdVdrift.root"
16#define FILE_ID "VDRIFT"
17
18
19extern "C" {
20#include <daqDA.h>
21}
22
23#include "event.h"
24#include "monitor.h"
25#include <stdio.h>
26#include <stdlib.h>
27
28
29//
30//Root includes
31//
32#include <TObjArray.h>
33#include <TString.h>
34#include <TVectorF.h>
35#include <TDirectory.h>
36#include <TSystem.h>
37#include <TFile.h>
38#include "TROOT.h"
39#include "TPluginManager.h"
40//
41//AliRoot includes
42//
43#include "AliRawReader.h"
44#include "AliRawReaderDate.h"
45#include "AliTRDrawFastStream.h"
46#include "AliTRDrawStreamBase.h"
47
48//
49//AMORE
50//
51#include <AmoreDA.h>
52
53//
54// TRD calibration algorithm includes
55//
56#include "AliTRDCalibraFillHisto.h"
57
58//functions, implementation below
59//void SendToAmoreDB(TObject *o, unsigned long32 runNb);
60
61
62/* Main routine
63 Arguments:
64 1- monitoring data source
65*/
66int main(int argc, char **argv) {
67
68 /* magic line from Rene */
69 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
70 "*",
71 "TStreamerInfo",
72 "RIO",
73 "TStreamerInfo()");
74 int status;
75
76 if (argc!=2) {
77 printf("Wrong number of arguments\n");
78 return -1;
79 }
80
81
82 /* define data source : this is argument 1 */
83 status=monitorSetDataSource( argv[1] );
84 if (status!=0) {
85 printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
86 return -1;
87 }
88
89
90 /* declare monitoring program */
91 status=monitorDeclareMp( __FILE__ );
92 if (status!=0) {
93 printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
94 return -1;
95 }
96
97
98 /* define wait event timeout - 1s max */
99 monitorSetNowait();
100 monitorSetNoWaitNetworkTimeout(1000);
101
102
103 /* log start of process */
104 printf("TRD DA VDRIFT started\n");
105
106
107 /* init some counters */
108 int nevents_physics=0;
109 int nevents_total=0;
110 //unsigned long32 runNb=0; //run number
111
112 //Instance of AliCDBManager: needed by AliTRDrawFastStream
113 //AliCDBManager *man = AliCDBManager::Instance();
114 //man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
115 //man->SetRun(0);
116 //Instance of AliTRDCalibraFillHisto
117 AliTRDCalibraFillHisto *calibra = AliTRDCalibraFillHisto::Instance();
118 calibra->SetNumberClustersProcent(0.9);
119
120 // everythings are okey for vdrift
121 Bool_t passvdrift = kTRUE; // if timebin okey
122 Int_t nbvdrift = 0; // number of events with entries for vdrift
123
124 // setting
125 AliTRDrawFastStream::DisableSkipData();
126
127 /* main loop (infinite) */
128 for(;;) {
129 //for(Int_t k = 0; k < 20; k++) {
130 struct eventHeaderStruct *event;
131 eventTypeType eventT;
132
133 /* check shutdown condition */
134 if (daqDA_checkShutdown()) {break;}
135
136 /* get next event (blocking call until timeout) */
137 status=monitorGetEventDynamic((void **)&event);
138 if (status==MON_ERR_EOF) {
139 printf ("End of File detected\n");
140 break; /* end of monitoring file has been reached */
141 }
142
143 if (status!=0) {
144 printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
145 break;
146 }
147
148 /* retry if got no event */
149 if (event==NULL) {
150 continue;
151 }
152
153 if( ((Int_t)nevents_total)%1000 == 0 ) printf(" event number %d (physic event number %d) will be processed\n",(Int_t) nevents_total,(Int_t) nevents_physics);
154
155
156
157 /* use event - here, just write event id to result file */
158 eventT=event->eventType;
159
160 //
161 // vdrift calibration: run only for physics events
162 //
163 if ((eventT==PHYSICS_EVENT) && (passvdrift)) {
164 //if (eventT==PHYSICS_EVENT) {
165 AliRawReader *rawReader = new AliRawReaderDate((void*)event);
166 rawReader->Select("TRD");
167
168 Int_t result = calibra->ProcessEventDAQ2((AliRawReader *)rawReader);
169 if(!result) passvdrift = kFALSE;
170 else nbvdrift += (Int_t) result/2;
171
172
173 delete rawReader;
174
175 }
176
177 // get the run number
178 //runNb = event->eventRunNb;
179
180 if(eventT==PHYSICS_EVENT){
181
182 nevents_physics++;
183
184 }
185
186 /*
187 if( ((Int_t)nevents_physics)%100 == 0 ) {
188 SendToAmoreDB(&calibra);
189 }
190 */
191
192
193 nevents_total++;
194
195
196 /* free resources */
197 free(event);
198
199 /* exit when last event received, no need to wait for TERM signal */
200 if (eventT==END_OF_RUN) {
201 printf("EOR event detected\n");
202 break;
203 }
204 }
205
206
207 /* report progress */
208 printf("%d events processed and %d used\n",nevents_total,nbvdrift);
209
210 //
211 // Write a local file and put it on the FX
212 //
213 TFile *fileTRD = new TFile(RESULT_FILE,"recreate");
214
215 if((nbvdrift > 0) && passvdrift){
216 //Double_t *stat = calibra->StatH((TH2 *)(calibra->GetPH2d()),1);
217 //if((stat[6] < 0.20) && (stat[5] > 3000.0)) {
218 // write the histogram in any case to see if problems
219 calibra->GetPH2d()->Write();
220 //}
221 }
222 fileTRD->Close();
223 status=0;
224 // Export the file in any case to see if problems
225 if(daqDA_FES_storeFile(RESULT_FILE,FILE_ID)) status = -2;
226
227 delete fileTRD;
228
229 return status;
230}
231
232/*
233 void SendToAmoreDB(TObject *o)
234 {
235 //AMORE
236 const char *amoreDANameorig=gSystem->Getenv("AMORE_DA_NAME");
237 gSystem->Setenv("AMORE_DA_NAME","TRD-dataQA");
238
239 amore::da::AmoreDA amoreDA(amore::da::AmoreDA::kSender);
240 Int_t statusDA=0;
241 statusDA+=amoreDA.Send("DataQA-VDRIFT",o);
242 if ( statusDA!=0 )
243 printf("Waring: Failed to write one of the calib objects to the AMORE database\n");
244 // reset env var
245 if (amoreDANameorig) gSystem->Setenv("AMORE_DA_NAME",amoreDANameorig);
246 }
247*/
248