]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/TRDHALFCHAMBERSTATUSda.cxx
updates requested by HLT
[u/mrichter/AliRoot.git] / TRD / TRDHALFCHAMBERSTATUSda.cxx
CommitLineData
ef7aea93 1/*
2
3Contact: r.bailhache@gsi.de
4Link:
5Reference run: 104892
6Run Type: PHYSICS
7DA Type: MON
8Number of events needed: many
9Input Files: TRD raw files
10Output Files: trdCalibrationhcs.root
11Trigger types used: PHYSICS_EVENT
12
13*/
14
15#define RESULT_FILE "trdHalfChamberStatus.root"
16#define FILE_ID "HALFCHAMBERSTATUS"
17
18extern "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>
32#include "TROOT.h"
33#include "TPluginManager.h"
34//
35// AliRoot includes
36//
37#include "AliRawReader.h"
38#include "AliRawReaderDate.h"
39#include "AliTRDrawFastStream.h"
40#include "AliTRDrawStreamBase.h"
41//#include "AliCDBManager.h"
42
43//
44//AMORE
45//
46#include <AmoreDA.h>
47
48//
49// AliRoot TRD calib classes
50//
51#include "AliTRDCalibChamberStatus.h"
52
53//functios, implementation below
54//void SendToAmoreDB(TObject *o, unsigned long32 runNb);
55
56/* Main routine
57 Arguments: list of DATE raw data files
58*/
59int main(int argc, char **argv) {
60
61 /* magic line from Rene */
62 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
63 "*",
64 "TStreamerInfo",
65 "RIO",
66 "TStreamerInfo()");
67
68 int status;
69
70
71 /* log start of process */
72 printf("TRD DA HALFCHAMBERSTATUS started\n");
73
74
75 /* check that we got some arguments = list of files */
76 if (argc<2) {
77 printf("Wrong number of arguments\n");
78 return -1;
79 }
80
81
82 /* copy locally a file from daq detector config db */
83 //status=daqDA_DB_getFile("myconfig","./myconfig.txt");
84 //if (status) {
85 // printf("Failed to get config file : %d\n",status);
86 // return -1;
87 //}
88 /* and possibly use it */
89
90
91 /* init some counters */
92 int nevents_total=0;
93 int nevents =0;
94
95 //Instance of AliCDBManager: needed by AliTRDRawStream
96 //AliCDBManager *man = AliCDBManager::Instance();
97 //man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
98 //man->SetRun(0);
99 // AliTRDCalibPadStatus object
100 AliTRDCalibChamberStatus calipad = AliTRDCalibChamberStatus();
101 calipad.Init();
102 //unsigned long32 runNb=0; //run number
103
104 // setting
105 AliTRDrawFastStream::DisableSkipData();
106
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;
123 eventTypeType eventT;
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
141 /* use event - here, just write event id to result file */
142 eventT=event->eventType;
143
144 if(eventT==PHYSICS_EVENT){
145
146 AliRawReader *rawReader = new AliRawReaderDate((void*)event);
147 rawReader->Select("TRD");
148
149 calipad.ProcessEvent((AliRawReader *) rawReader,nevents);
150 nevents++;
151 delete rawReader;
152
153 }
154
155 nevents_total++;
156
157 // get the run number
158 //runNb = event->eventRunNb;
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
169 /* write file in any case to see what happens in case of problems*/
170 TFile *fileTRD = new TFile(RESULT_FILE,"recreate");
171 calipad.AnalyseHisto();
172 calipad.Write("calibchamberstatus");
173 fileTRD->Close();
174
175 /* store the result file on FES */
176 status=daqDA_FES_storeFile(RESULT_FILE,FILE_ID);
177 if (status) {
178 printf("Failed to export file : %d\n",status);
179 return -1;
180 }
181
182
183 return status;
184
185}