]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/TRDVDRIFTda.cxx
bugfix #38673 (Kenneth): last pad per row was always ignored; corrected cleanup og...
[u/mrichter/AliRoot.git] / TRD / TRDVDRIFTda.cxx
CommitLineData
170c35f1 1/*
2
c5348551 3Contact: r.bailhache@gsi.de
27b46d95 4Link:
5Reference run: 25909
25781e34 6Run Type: PHYSICS STANDALONE
c5348551 7DA Type: MON
27b46d95 8Number of events needed: many
9Input Files: TRD raw files
10Output Files: trdCalibrationv.root
11Trigger types used: PHYSICS_EVENT
170c35f1 12
13*/
14
5f518e55 15#define RESULT_FILE "trdVdrift.root"
16#define FILE_ID "VDRIFT"
6ace5fe2 17
18
170c35f1 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>
170c35f1 35#include <TDirectory.h>
36#include <TSystem.h>
37#include <TFile.h>
25781e34 38#include "TROOT.h"
39#include "TPluginManager.h"
170c35f1 40//
41//AliRoot includes
42//
43#include "AliRawReader.h"
44#include "AliRawReaderDate.h"
80cb9622 45#include "AliTRDrawStreamTB.h"
5ac2a9f9 46#include "AliTRDrawStreamBase.h"
27b46d95 47
170c35f1 48
49//
50// TRD calibration algorithm includes
51//
170c35f1 52#include "AliTRDCalibraFillHisto.h"
53
54
55
56
57/* Main routine
58 Arguments:
59 1- monitoring data source
60*/
61int main(int argc, char **argv) {
62
25781e34 63 /* magic line from Rene */
64 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
65 "*",
66 "TStreamerInfo",
67 "RIO",
68 "TStreamerInfo()");
170c35f1 69 int status;
70
71 if (argc!=2) {
72 printf("Wrong number of arguments\n");
73 return -1;
74 }
75
76
77 /* define data source : this is argument 1 */
78 status=monitorSetDataSource( argv[1] );
79 if (status!=0) {
80 printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
81 return -1;
82 }
83
84
85 /* declare monitoring program */
86 status=monitorDeclareMp( __FILE__ );
87 if (status!=0) {
88 printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
89 return -1;
90 }
91
92
93 /* define wait event timeout - 1s max */
94 monitorSetNowait();
95 monitorSetNoWaitNetworkTimeout(1000);
96
97
98 /* log start of process */
6ace5fe2 99 printf("TRD DA VDRIFT started\n");
170c35f1 100
101
102 /* init some counters */
103 int nevents_physics=0;
104 int nevents_total=0;
105
289cc637 106 //Instance of AliCDBManager: needed by AliTRDRawStreamV2
27b46d95 107 //AliCDBManager *man = AliCDBManager::Instance();
108 //man->SetDefaultStorage("local://$ALICE_ROOT");
109 //man->SetRun(0);
170c35f1 110 //Instance of AliTRDCalibraFillHisto
111 AliTRDCalibraFillHisto *calibra = AliTRDCalibraFillHisto::Instance();
170c35f1 112 // everythings are okey for vdrift
3a0f6479 113 Bool_t passvdrift = kTRUE; // if timebin okey
114 Int_t nbvdrift = 0; // number of events with entries for vdrift
170c35f1 115
162a3e73 116 // setting
117 // AliTRDrawStreamTB::SetNoDebug();
118 AliTRDrawStreamTB::SetNoErrorWarning();
5f518e55 119 //AliTRDrawStreamTB::SetForceCleanDataOnly();
162a3e73 120 AliTRDrawStreamTB::AllowCorruptedData();
5f518e55 121 AliTRDrawStreamTB::DisableStackNumberChecker();
122 AliTRDrawStreamTB::DisableStackLinkNumberChecker();
162a3e73 123 //AliTRDrawStreamTB::SetSkipCDH();
124 //AliTRDrawStreamTB::SetExtraWordsFix();
125 //AliTRDrawStreamTB::EnableDebugStream();
126 //AliTRDrawStreamTB::SetDumpHead(320);
127 //AliTRDrawStreamTB::SetDumpHead(80);
f222df8d 128
170c35f1 129
130 /* main loop (infinite) */
131 for(;;) {
132 //for(Int_t k = 0; k < 20; k++) {
133 struct eventHeaderStruct *event;
134 eventTypeType eventT;
6ace5fe2 135
170c35f1 136 /* check shutdown condition */
137 if (daqDA_checkShutdown()) {break;}
138
139 /* get next event (blocking call until timeout) */
140 status=monitorGetEventDynamic((void **)&event);
141 if (status==MON_ERR_EOF) {
142 printf ("End of File detected\n");
143 break; /* end of monitoring file has been reached */
144 }
145
146 if (status!=0) {
147 printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
148 break;
149 }
150
151 /* retry if got no event */
152 if (event==NULL) {
153 continue;
154 }
155
25781e34 156 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);
170c35f1 157
158
159 /* use event - here, just write event id to result file */
160 eventT=event->eventType;
6ace5fe2 161
170c35f1 162 //
163 // vdrift calibration: run only for physics events
164 //
6ace5fe2 165 if ((eventT==PHYSICS_EVENT) && (passvdrift)) {
170c35f1 166 //if (eventT==PHYSICS_EVENT) {
170c35f1 167 AliRawReader *rawReader = new AliRawReaderDate((void*)event);
5ac2a9f9 168 rawReader->Select("TRD");
80cb9622 169 AliTRDrawStreamTB *trdRawStream = new AliTRDrawStreamTB((AliRawReader *) rawReader);
5ac2a9f9 170 Int_t result = calibra->ProcessEventDAQ((AliTRDrawStreamBase *) trdRawStream,(Bool_t)nevents_physics);
3a0f6479 171 if(!result) passvdrift = kFALSE;
172 else nbvdrift += (Int_t) result/2;
5750af0a 173
170c35f1 174 delete trdRawStream;
175 delete rawReader;
5ac2a9f9 176
170c35f1 177 }
178
5750af0a 179 if(eventT==PHYSICS_EVENT){
180
181 nevents_physics++;
182
183 }
170c35f1 184
185 nevents_total++;
186
187
188 /* free resources */
189 free(event);
190
191 /* exit when last event received, no need to wait for TERM signal */
192 if (eventT==END_OF_RUN) {
193 printf("EOR event detected\n");
194 break;
195 }
196 }
197
6ace5fe2 198
199 /* report progress */
200 printf("%d events processed and %d used\n",nevents_total,nbvdrift);
201
170c35f1 202 //
203 // Write a local file and put it on the FX
204 //
6ace5fe2 205 TFile *fileTRD = new TFile(RESULT_FILE,"recreate");
206
3a0f6479 207 if((nbvdrift > 0) && passvdrift){
6ace5fe2 208 //Double_t *stat = calibra->StatH((TH2 *)(calibra->GetPH2d()),1);
209 //if((stat[6] < 0.20) && (stat[5] > 3000.0)) {
210 // write the histogram in any case to see if problems
211 calibra->GetPH2d()->Write();
212 //}
170c35f1 213 }
214 fileTRD->Close();
215 status=0;
6ace5fe2 216 // Export the file in any case to see if problems
5f518e55 217 if(daqDA_FES_storeFile(RESULT_FILE,FILE_ID)) status = -2;
6ace5fe2 218
170c35f1 219 delete fileTRD;
220
221 return status;
222}