]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/EMCALPEDda.cxx
forgot to include baseLinkDef file update in yesterdays commit; sorry, and thanks...
[u/mrichter/AliRoot.git] / EMCAL / EMCALPEDda.cxx
CommitLineData
3b5beac9 1/*
22580691 2 EMCAL DA for online calibration: for pedestal studies
3b5beac9 3
4 Contact: silvermy@ornl.gov
22580691 5 Run Type: PEDESTAL
6 DA Type: LDC
07cc7773 7 Number of events needed: ~1000
22580691 8 Frequency: expect to run this once per day initially
9 (maybe less frequent later)
3b5beac9 10 Input Files: argument list
22580691 11 Output Files: RESULT_FILE=EMCALPED.root, to be exported to the DAQ FXS
12 fileId: FILE_ID=EMCALPED
3b5beac9 13
22580691 14 Trigger types used: at least for now, all events in special PEDESTAL run
15 (physics, calibration, systemSoftwareTrigger, detectorSoftwareTrigger)
16 [When we have real data files later, we may restrict this further]
3b5beac9 17*/
18/*
19 This process reads RAW data from the files provided as command line arguments
22580691 20 and save results (class itself) in a file (named from RESULT_FILE define
21 - see below).
3b5beac9 22*/
23
22580691 24#define RESULT_FILE "EMCALPED.root"
25#define FILE_ID "EMCALPED"
3b5beac9 26#define AliDebugLevel() -1
22580691 27#define FILE_PEDClassName "emcCalibPedestal"
21cad85c 28const int kNRCU = 4;
f4fc542c 29/* LOCAL_DEBUG is used to bypass daq* calls, for local testing */
22580691 30//#define LOCAL_DEBUG 1 // comment out to run normally
3b5beac9 31
32extern "C" {
33#include <daqDA.h>
34}
22580691 35#include "event.h" /* in $DATE_COMMON_DEFS/; includes definition of event types */
36#include "monitor.h" /* in $DATE_MONITOR_DIR/; monitor* interfaces */
3b5beac9 37
38#include "stdio.h"
39#include "stdlib.h"
40
f4fc542c 41// ROOT includes
42#include <TFile.h>
43#include <TROOT.h>
44#include <TPluginManager.h>
45#include <TSystem.h>
46
3b5beac9 47//
48//AliRoot includes
49//
50#include "AliRawReader.h"
51#include "AliRawReaderDate.h"
52#include "AliRawEventHeaderBase.h"
32cd4c24 53#include "AliCaloRawStreamV3.h"
f4fc542c 54#include "AliCaloAltroMapping.h"
3b5beac9 55#include "AliLog.h"
56
57//
58// EMC calibration-helper algorithm includes
59//
60#include "AliCaloCalibPedestal.h"
61
62/*
f4fc542c 63 Main routine, EMC pedestal detector algorithm
3b5beac9 64 Arguments: list of DATE raw data files
65*/
66
67int main(int argc, char **argv) {
68
32cd4c24 69 AliLog::SetClassDebugLevel("AliCaloRawStreamV3",-5);
3b5beac9 70 AliLog::SetClassDebugLevel("AliRawReaderDate",-5);
71 AliLog::SetModuleDebugLevel("RAW",-5);
72
73 if (argc<2) {
74 printf("Wrong number of arguments\n");
f4fc542c 75 return -1;
3b5beac9 76 }
77
f4fc542c 78 /* magic line - for TStreamerInfo */
79 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
80 "*",
81 "TStreamerInfo",
82 "RIO",
83 "TStreamerInfo()");
84
3b5beac9 85 int i, status;
86
87 /* log start of process */
88 printf("EMCAL DA started - %s\n",__FILE__);
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 }
f4fc542c 96 /* define wait event timeout - 1s max */
97 monitorSetNowait();
98 monitorSetNoWaitNetworkTimeout(1000);
99
100 /* Retrieve mapping files from DAQ DB */
21cad85c 101 const char* mapFiles[kNRCU] = {"RCU0A.data","RCU1A.data","RCU0C.data","RCU1C.data"};
f4fc542c 102
103 for(Int_t iFile=0; iFile<kNRCU; iFile++) {
104 int failed = daqDA_DB_getFile(mapFiles[iFile], mapFiles[iFile]);
105 if(failed) {
106 printf("Cannot retrieve file %d : %s from DAQ DB. Exit now..\n",
107 iFile, mapFiles[iFile]);
108#ifdef LOCAL_DEBUG
109#else
110 return -1;
111#endif
112 }
113 }
114
115 /* Open mapping files */
116 AliCaloAltroMapping *mapping[kNRCU];
117 TString path = "./";
118 path += "RCU";
119 TString path2;
21cad85c 120 TString side[] = {"A","C"};//+ and - pseudarapidity supermodules
121 for(Int_t j = 0; j < 2; j++){
122 for(Int_t i = 0; i < 2; i++) {
123 path2 = path;
124 path2 += i;
125 path2 +=side[j];
126 path2 += ".data";
127 mapping[i] = new AliCaloAltroMapping(path2.Data());
128 }
129 }
f4fc542c 130 /* set up our analysis class */
131 AliCaloCalibPedestal * calibPedestal = new AliCaloCalibPedestal(AliCaloCalibPedestal::kEmCal); // pedestal and noise calibration
132 calibPedestal->SetAltroMapping( mapping );
3b5beac9 133
f4fc542c 134 AliRawReader *rawReader = NULL;
135 int nevents=0;
3b5beac9 136
137 /* loop over RAW data files */
3b5beac9 138 for ( i=1; i<argc; i++ ) {
139
140 /* define data source : this is argument i */
141 printf("Processing file %s\n", argv[i]);
f4fc542c 142 status=monitorSetDataSource( argv[i] );
143 if (status!=0) {
144 printf("monitorSetDataSource() failed. Error=%s. Exiting ...\n", monitorDecodeError(status));
145 return -1;
146 }
3b5beac9 147
148 /* read until EOF */
f4fc542c 149 struct eventHeaderStruct *event;
150 eventTypeType eventT;
151
152 for ( ; ; ) { // infinite loop
3b5beac9 153
154 /* check shutdown condition */
155 if (daqDA_checkShutdown()) {break;}
156
f4fc542c 157 /* get next event (blocking call until timeout) */
158 status=monitorGetEventDynamic((void **)&event);
159 if (status==MON_ERR_EOF) {
160 printf ("End of File %d (%s) detected\n", i, argv[i]);
161 break; /* end of monitoring file has been reached */
162 }
163 if (status!=0) {
164 printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
165 break;
166 }
167
168 /* retry if got no event */
169 if (event==NULL) {
170 continue;
171 }
22580691 172 eventT = event->eventType; /* just convenient shorthand */
f4fc542c 173
174 /* skip start/end of run events */
22580691 175 if ( (eventT != physicsEvent) && (eventT != calibrationEvent) &&
176 (eventT != systemSoftwareTriggerEvent) && (eventT != detectorSoftwareTriggerEvent) ) {
f4fc542c 177 continue;
178 }
179
180 nevents++; // count how many acceptable events we have
181
182 // Pedestal calibration
183 rawReader = new AliRawReaderDate((void*)event);
184 calibPedestal->ProcessEvent(rawReader);
185 delete rawReader;
186
187 /* free resources */
188 free(event);
189
190 } //until EOF
3b5beac9 191 } // loop over files
192
193 //
452729ca 194 // write class to rootfile
3b5beac9 195 //
196
197 printf ("%d physics/calibration events processed.\n",nevents);
452729ca 198
199 TFile f(RESULT_FILE, "recreate");
200 if (!f.IsZombie()) {
201 f.cd();
22580691 202 calibPedestal->Write(FILE_PEDClassName);
452729ca 203 f.Close();
22580691 204 printf("Object saved to file \"%s\" as \"%s\".\n",
205 RESULT_FILE, FILE_PEDClassName);
452729ca 206 }
207 else {
22580691 208 printf("Could not save the object to file \"%s\".\n",
209 RESULT_FILE);
452729ca 210 }
3b5beac9 211
22580691 212 //
213 // closing down; see if we can delete our analysis helper also
214 //
3b5beac9 215 delete calibPedestal;
f4fc542c 216 for(Int_t iFile=0; iFile<kNRCU; iFile++) {
217 if (mapping[iFile]) delete mapping[iFile];
218 }
219
220 /* store the result file on FES */
221#ifdef LOCAL_DEBUG
222#else
223 status = daqDA_FES_storeFile(RESULT_FILE, FILE_ID);
224#endif
3b5beac9 225
226 return status;
227}