3 Contact: r.bailhache@gsi.de
8 Number of events needed: 100
9 Input Files: TRD raw files
10 Output Files: trdCalibration.root
11 Trigger types used: PHYSICS_EVENT
15 #define RESULT_FILE "trdPedestal.root"
16 #define FILE_ID "PADSTATUS"
31 #include <TStopwatch.h>
33 #include "TPluginManager.h"
38 #include "AliRawReader.h"
39 #include "AliRawReaderDate.h"
40 #include "AliTRDrawFastStream.h"
41 #include "AliTRDrawStreamBase.h"
42 #include "AliTRDgeometry.h"
43 #include "AliCDBManager.h"
51 // AliRoot TRD calib classes
53 #include "AliTRDCalibPadStatus.h"
55 //functios, implementation below
56 void SendToAmoreDB(TObject *o, unsigned long32 runNb);
59 Arguments: list of DATE raw data files
61 int main(int argc, char **argv) {
63 /* magic line from Rene */
64 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
73 /* log start of process */
74 printf("TRD DA PEDESTAL started\n");
77 /* check that we got some arguments = list of files */
79 printf("Wrong number of arguments\n");
84 /* copy locally a file from daq detector config db */
85 //status=daqDA_DB_getFile("myconfig","./myconfig.txt");
87 // printf("Failed to get config file : %d\n",status);
90 /* and possibly use it */
93 /* init some counters */
97 //Instance of AliCDBManager: needed by AliTRDRawStream
98 //AliCDBManager *man = AliCDBManager::Instance();
99 //man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
101 // AliTRDCalibPadStatus object
102 AliTRDCalibPadStatus calipad = AliTRDCalibPadStatus();
103 Bool_t passpadstatus = kTRUE;
104 unsigned long32 runNb=0; //run number
107 AliTRDrawFastStream::DisableSkipData();
110 /* read the data files */
112 for (n=1;n<argc;n++) {
114 /* define data source : this is argument i */
115 printf("Processing file %s\n",argv[n]);
116 status=monitorSetDataSource( argv[n] );
118 printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
122 /* read the file until EOF */
124 struct eventHeaderStruct *event;
125 eventTypeType eventT;
128 status=monitorGetEventDynamic((void **)&event);
129 if (status==MON_ERR_EOF) {
130 printf("End of File %d detected\n",n);
131 break; /* end of monitoring file has been reached */
134 printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
138 /* retry if got no event */
143 /* use event - here, just write event id to result file */
144 eventT=event->eventType;
146 if((eventT==PHYSICS_EVENT) && (passpadstatus)){
148 AliRawReader *rawReader = new AliRawReaderDate((void*)event);
149 rawReader->Select("TRD");
151 //rawReader->SelectEquipment(-1,1024,1025);
153 Int_t result = calipad.ProcessEvent2((AliRawReader *) rawReader);
154 // 0 error, 1 no input, 2 output
155 if(result == 2) nevents++;
156 if(result == 0) passpadstatus = kFALSE;
163 // get the run number
164 runNb = event->eventRunNb;
172 /* report progress */
173 printf("%d events processed and %d used\n",nevents_total,nevents);
175 /* write file in any case to see what happens in case of problems*/
176 TFile *fileTRD = new TFile(RESULT_FILE,"recreate");
177 if(nevents < 30) calipad.Destroy();
178 calipad.AnalyseHisto();
179 calipad.Write("calibpadstatus");
183 SendToAmoreDB(&calipad,runNb);
186 /* store the result file on FES */
187 status=daqDA_FES_storeFile(RESULT_FILE,FILE_ID);
189 printf("Failed to export file : %d\n",status);
197 void SendToAmoreDB(TObject *calipad, unsigned long32 runNb)
199 //cheet a little -- temporary solution (hopefully)
201 //currently amoreDA uses the environment variable AMORE_DA_NAME to create the mysql
202 //table in which the calib objects are stored. This table is dropped each time AmoreDA
203 //is initialised. This of course makes a problem if we would like to store different
204 //calibration entries in the AMORE DB. Therefore in each DA which writes to the AMORE DB
205 //the AMORE_DA_NAME env variable is overwritten.
209 // The reference data are stored in:
210 // PadStatus1 for sm-00-01-02
211 // PadStatus2 for sm-03-04-05
212 // PadStatus3 for sm-06-07-08
213 // PadStatus4 for sm-09-10-11
214 // PadStatus5 for sm-12-13-14
215 // PadStatus6 for sm-15-16-17
216 // PadStatus0 if nothing found..means problems
222 Int_t ldcnumber = -1;
224 for (Int_t idet=0; idet<540; idet++) {
225 AliTRDCalROC *rocMean = ((AliTRDCalibPadStatus *) calipad)->GetCalRocMean(idet, kFALSE);
227 sm = AliTRDgeometry::GetSector(idet);
228 if((sm==0) || (sm==1) || (sm==2)) ldcnumber = 1;
229 if((sm==3) || (sm==4) || (sm==5)) ldcnumber = 2;
230 if((sm==6) || (sm==7) || (sm==8)) ldcnumber = 3;
231 if((sm==9) || (sm==10) || (sm==11)) ldcnumber = 4;
232 if((sm==12) || (sm==13) || (sm==14)) ldcnumber = 5;
233 if((sm==15) || (sm==16) || (sm==17)) ldcnumber = 6;
236 const char *amoreDANameorig=gSystem->Getenv("AMORE_DA_NAME");
238 gSystem->Setenv("AMORE_DA_NAME",Form("TRD-dataQA-%02d-%s",ldcnumber,FILE_ID));
240 /////////////////////
245 TObjString info(Form("Run: %u; Date: %s",runNb,time.AsSQLString()));
247 amore::da::AmoreDA amoreDA(amore::da::AmoreDA::kSender);
249 statusDA+=amoreDA.Send("Pedestals",calipad);
250 statusDA+=amoreDA.Send("Info",&info);
252 printf("Waring: Failed to write one of the calib objects to the AMORE database\n");
254 printf("Waring: No data found!\n");
258 if (amoreDANameorig) gSystem->Setenv("AMORE_DA_NAME",amoreDANameorig);