]>
Commit | Line | Data |
---|---|---|
6ace5fe2 | 1 | /* |
2 | ||
c5348551 | 3 | Contact: r.bailhache@gsi.de |
27b46d95 | 4 | Link: |
5 | Reference run: 12170 | |
25781e34 | 6 | Run Type: PEDESTAL |
c5348551 | 7 | DA Type: LDC |
8 | Number of events needed: 100 | |
27b46d95 | 9 | Input Files: TRD raw files |
10 | Output Files: trdCalibration.root | |
f2a468d7 | 11 | Trigger types used: PHYSICS_EVENT |
6ace5fe2 | 12 | |
13 | */ | |
14 | ||
5f518e55 | 15 | #define RESULT_FILE "trdPedestal.root" |
16 | #define FILE_ID "PADSTATUS" | |
6ace5fe2 | 17 | |
18 | extern "C" { | |
19 | #include <daqDA.h> | |
20 | } | |
21 | ||
22 | #include "event.h" | |
23 | #include "monitor.h" | |
24 | #include <stdio.h> | |
25 | #include <stdlib.h> | |
26 | ||
27 | // | |
28 | // Root includes | |
29 | // | |
30 | #include <TFile.h> | |
31 | #include <TStopwatch.h> | |
25781e34 | 32 | #include "TROOT.h" |
33 | #include "TPluginManager.h" | |
6ace5fe2 | 34 | // |
35 | // AliRoot includes | |
36 | // | |
37 | #include "AliRawReader.h" | |
38 | #include "AliRawReaderDate.h" | |
987ba9a3 | 39 | #include "AliTRDrawStream.h" |
5e64ce0d | 40 | #include "AliTRDrawStreamBase.h" |
6ace5fe2 | 41 | #include "AliCDBManager.h" |
42 | // | |
43 | // AliRoot TRD calib classes | |
44 | // | |
45 | #include "AliTRDCalibPadStatus.h" | |
46 | ||
47 | ||
48 | /* Main routine | |
49 | Arguments: list of DATE raw data files | |
50 | */ | |
51 | int main(int argc, char **argv) { | |
52 | ||
25781e34 | 53 | /* magic line from Rene */ |
54 | gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo", | |
55 | "*", | |
56 | "TStreamerInfo", | |
57 | "RIO", | |
58 | "TStreamerInfo()"); | |
59 | ||
6ace5fe2 | 60 | int status; |
61 | ||
62 | ||
63 | /* log start of process */ | |
64 | printf("TRD DA PEDESTAL started\n"); | |
65 | ||
66 | ||
67 | /* check that we got some arguments = list of files */ | |
68 | if (argc<2) { | |
69 | printf("Wrong number of arguments\n"); | |
70 | return -1; | |
71 | } | |
72 | ||
73 | ||
74 | /* copy locally a file from daq detector config db */ | |
75 | //status=daqDA_DB_getFile("myconfig","./myconfig.txt"); | |
76 | //if (status) { | |
77 | // printf("Failed to get config file : %d\n",status); | |
78 | // return -1; | |
79 | //} | |
80 | /* and possibly use it */ | |
81 | ||
82 | ||
83 | /* init some counters */ | |
84 | int nevents_total=0; | |
85 | int nevents =0; | |
86 | ||
87 | //Instance of AliCDBManager: needed by AliTRDRawStream | |
162a3e73 | 88 | //AliCDBManager *man = AliCDBManager::Instance(); |
162637e4 | 89 | //man->SetDefaultStorage("local://$ALICE_ROOT/OCDB"); |
162a3e73 | 90 | //man->SetRun(0); |
6ace5fe2 | 91 | // AliTRDCalibPadStatus object |
92 | AliTRDCalibPadStatus calipad = AliTRDCalibPadStatus(); | |
93 | Bool_t passpadstatus = kTRUE; | |
94 | ||
162a3e73 | 95 | // setting |
987ba9a3 | 96 | // AliTRDrawStream::SetNoDebug(); |
97 | AliTRDrawStream::SetNoErrorWarning(); | |
98 | //AliTRDrawStream::SetForceCleanDataOnly(); | |
99 | AliTRDrawStream::AllowCorruptedData(); | |
100 | AliTRDrawStream::DisableStackNumberChecker(); | |
101 | AliTRDrawStream::DisableStackLinkNumberChecker(); | |
102 | //AliTRDrawStream::SetSkipCDH(); | |
103 | //AliTRDrawStream::SetExtraWordsFix(); | |
104 | //AliTRDrawStream::EnableDebugStream(); | |
105 | //AliTRDrawStream::SetDumpHead(320); | |
106 | //AliTRDrawStream::SetDumpHead(80); | |
6ace5fe2 | 107 | |
108 | /* read the data files */ | |
109 | int n; | |
110 | for (n=1;n<argc;n++) { | |
111 | ||
112 | /* define data source : this is argument i */ | |
113 | printf("Processing file %s\n",argv[n]); | |
114 | status=monitorSetDataSource( argv[n] ); | |
115 | if (status!=0) { | |
116 | printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status)); | |
117 | return -1; | |
118 | } | |
119 | ||
120 | /* read the file until EOF */ | |
121 | for(;;) { | |
122 | struct eventHeaderStruct *event; | |
f2a468d7 | 123 | eventTypeType eventT; |
6ace5fe2 | 124 | |
125 | /* get next event */ | |
126 | status=monitorGetEventDynamic((void **)&event); | |
127 | if (status==MON_ERR_EOF) { | |
128 | printf("End of File %d detected\n",n); | |
129 | break; /* end of monitoring file has been reached */ | |
130 | } | |
131 | if (status!=0) { | |
132 | printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status)); | |
133 | break; | |
134 | } | |
135 | ||
136 | /* retry if got no event */ | |
137 | if (event==NULL) { | |
138 | break; | |
139 | } | |
140 | ||
f2a468d7 | 141 | /* use event - here, just write event id to result file */ |
142 | eventT=event->eventType; | |
143 | ||
144 | if((eventT==PHYSICS_EVENT) && (passpadstatus)){ | |
6ace5fe2 | 145 | |
146 | AliRawReader *rawReader = new AliRawReaderDate((void*)event); | |
f222df8d | 147 | rawReader->Select("TRD"); |
987ba9a3 | 148 | AliTRDrawStream *trdRawStream = new AliTRDrawStream((AliRawReader *)rawReader); |
8799e123 | 149 | Int_t result = calipad.ProcessEvent((AliTRDrawStreamBase *)trdRawStream,0); |
150 | // 0 error, 1 no input, 2 output | |
151 | if(result == 2) nevents++; | |
152 | if(result == 0) passpadstatus = kFALSE; | |
6ace5fe2 | 153 | delete trdRawStream; |
154 | delete rawReader; | |
8799e123 | 155 | |
6ace5fe2 | 156 | } |
157 | ||
158 | nevents_total++; | |
159 | ||
160 | /* free resources */ | |
161 | free(event); | |
162 | } | |
163 | } | |
164 | ||
165 | ||
166 | /* report progress */ | |
167 | printf("%d events processed and %d used\n",nevents_total,nevents); | |
168 | ||
6ace5fe2 | 169 | /* write file in any case to see what happens in case of problems*/ |
170 | TFile *fileTRD = new TFile(RESULT_FILE,"recreate"); | |
8799e123 | 171 | if(nevents < 30) calipad.Destroy(); |
289cc637 | 172 | calipad.AnalyseHisto(); |
6ace5fe2 | 173 | calipad.Write("calibpadstatus"); |
174 | fileTRD->Close(); | |
25781e34 | 175 | |
6ace5fe2 | 176 | /* store the result file on FES */ |
5f518e55 | 177 | status=daqDA_FES_storeFile(RESULT_FILE,FILE_ID); |
6ace5fe2 | 178 | if (status) { |
179 | printf("Failed to export file : %d\n",status); | |
180 | return -1; | |
181 | } | |
6ace5fe2 | 182 | |
183 | ||
184 | return status; | |
185 | } |