1 |
/** |
/** |
2 |
* FTrkQLook_EXPERT |
* FTrkQLook_EXPERT.cxx |
3 |
* |
* |
4 |
* autor: D.Fedele |
* autor: D.Fedele |
5 |
* version 2.0 |
* version v1r10 |
6 |
* Parameters: |
* Parameters: |
7 |
* file - the data file to analyze |
* file - the data file to analyze |
8 |
* fromevent - first event to analyze |
* fromevent - first event to analyze |
19 |
#include <TLatex.h> |
#include <TLatex.h> |
20 |
#include <TCanvas.h> |
#include <TCanvas.h> |
21 |
#include <TGraph.h> |
#include <TGraph.h> |
22 |
|
#include <TFile.h> |
23 |
#include <TTree.h> |
#include <TTree.h> |
24 |
#include <TStyle.h> |
#include <TStyle.h> |
25 |
// |
// |
30 |
#include <TrkAlarmEvent.h> |
#include <TrkAlarmEvent.h> |
31 |
#include <tsbt/TsbTRecord.h> |
#include <tsbt/TsbTRecord.h> |
32 |
#include <tsbt/TsbTEvent.h> |
#include <tsbt/TsbTEvent.h> |
33 |
|
#include <tsbb/TsbBRecord.h> |
34 |
|
#include <tsbb/TsbBEvent.h> |
35 |
|
#include <EventCounter.h> |
36 |
|
#include <PacketType.h> |
37 |
// |
// |
38 |
|
#define MAXSTORAGE 50000 |
|
void stringcopy(TString& s1, const TString& s2, Int_t from=0, Int_t to=0){ |
|
|
if ( to == 0 ){ |
|
|
Int_t t2length = s2.Length(); |
|
|
s1 = ""; |
|
|
to = t2length; |
|
|
}; |
|
|
for (Int_t i = from; i<to; i++){ |
|
|
s1.Append(s2[i],1); |
|
|
}; |
|
|
}; |
|
|
|
|
39 |
|
|
40 |
void FTrkQLook_EXPERT(TString file,Int_t fromevent,Int_t toevent, TString outdir, TString outfile) |
void FTrkQLook_EXPERT(TString file,Int_t fromevent,Int_t toevent, TString outdir, TString outfile) |
41 |
{ |
{ |
42 |
// |
// |
43 |
// obtain information about the data file and select the output dir |
// obtain information about the data file and select the output dir |
44 |
const string filepath=file.Data(); |
Int_t dwpos = file.Last('/'); |
45 |
Int_t dwpos = filepath.rfind("/"); |
Int_t dwpos1 = file.Last('.'); |
|
Int_t dwpos1 = filepath.find(".root"); |
|
|
TString fpath=(filepath.c_str()); |
|
46 |
TString base,ffile ; |
TString base,ffile ; |
47 |
stringcopy(ffile,fpath,dwpos+1,dwpos1); |
ffile=file(dwpos+1,dwpos1-(dwpos+1)); |
48 |
stringcopy(base,fpath,0,dwpos); |
if(dwpos>0) base=file(0,dwpos); |
|
if(dwpos>0) base+="/"; |
|
49 |
|
|
50 |
TString out; |
TString out; |
51 |
if(outdir.Length()==0){ |
if(outdir.Length()==0){ |
53 |
}else{ |
}else{ |
54 |
out = outdir; |
out = outdir; |
55 |
} |
} |
56 |
|
if(out.Last('/')+1<out.Length()) out+="/"; |
57 |
|
|
58 |
// |
// |
59 |
// inizialise the variables and open the file |
// inizialise the variables and open the file |
60 |
pamela::TsbTEvent *event = 0; |
pamela::TsbTEvent *event = 0; |
61 |
pamela::TsbTRecord *record = 0; |
pamela::TsbTRecord *record = 0; |
62 |
|
pamela::TsbBEvent *Bevent = 0; |
63 |
|
pamela::TsbBRecord *Brecord = 0; |
64 |
pamela::tracker::TrackerEvent *te=0; |
pamela::tracker::TrackerEvent *te=0; |
65 |
pamela::EventHeader *eh=0,*aleh=0,*eH=0,*eT=0; |
pamela::EventHeader *eh=0,*aleh=0,*eH=0,*eT=0,*eB=0; |
66 |
pamela::PscuHeader *ph=0,*pH=0; |
pamela::PscuHeader *ph=0,*pH=0; |
67 |
pamela::TrkAlarmEvent *al=0; |
pamela::TrkAlarmEvent *al=0; |
68 |
pamela::RunHeaderEvent *reh=0; |
pamela::RunHeaderEvent *reh=0; |
69 |
|
pamela::EventCounter *cod=0; |
70 |
|
|
71 |
|
pamela::PacketType *pctp=0; |
72 |
|
|
73 |
TFile *datafile = new TFile(file); |
TFile *datafile = new TFile(file); |
74 |
|
if ( !datafile ){ |
75 |
|
printf("No data file, exiting...\n"); |
76 |
|
return; |
77 |
|
} |
78 |
|
|
79 |
TTree *tree = (TTree*)datafile->Get("TsbT"); |
TTree *tree = (TTree*)datafile->Get("TsbT"); |
80 |
tree->SetBranchAddress("TsbT",&event); |
tree->SetBranchAddress("TsbT",&event); |
81 |
tree->SetBranchAddress("Header",&eT); |
tree->SetBranchAddress("Header",&eT); |
82 |
|
|
83 |
|
TTree *Btree = (TTree*)datafile->Get("TsbB"); |
84 |
|
Btree->SetBranchAddress("TsbB",&Bevent); |
85 |
|
Btree->SetBranchAddress("Header",&eB); |
86 |
|
|
87 |
TTree *altr = (TTree*)datafile->Get("TrkAlarm"); |
TTree *altr = (TTree*)datafile->Get("TrkAlarm"); |
88 |
altr->SetBranchAddress("TrkAlarm",&al); |
altr->SetBranchAddress("TrkAlarm",&al); |
89 |
altr->SetBranchAddress("Header",&aleh); |
altr->SetBranchAddress("Header",&aleh); |
99 |
Long64_t nevent = tr->GetEntries(); |
Long64_t nevent = tr->GetEntries(); |
100 |
Long64_t neventH = otr->GetEntries(); |
Long64_t neventH = otr->GetEntries(); |
101 |
Long64_t tnevent = tree->GetEntries(); |
Long64_t tnevent = tree->GetEntries(); |
102 |
|
Long64_t bnevent = Btree->GetEntries(); |
103 |
Long64_t alnevent = altr->GetEntries(); |
Long64_t alnevent = altr->GetEntries(); |
104 |
Int_t minevent=0; |
Int_t minevent=0; |
105 |
Int_t maxevent=0; |
Int_t maxevent=0; |
107 |
printf("Number of total events: %lld\n",nevent); |
printf("Number of total events: %lld\n",nevent); |
108 |
printf("Number of header events: %lld\n",neventH); |
printf("Number of header events: %lld\n",neventH); |
109 |
printf("Number of TsbT events: %lld\n",tnevent); |
printf("Number of TsbT events: %lld\n",tnevent); |
110 |
|
printf("Number of TsbB events: %lld\n",bnevent); |
111 |
printf("Number of TrkAlarm packet events: %lld\n",alnevent); |
printf("Number of TrkAlarm packet events: %lld\n",alnevent); |
112 |
|
|
113 |
if (nevent<=0){ |
if (nevent<=0){ |
141 |
nevent=maxevent-minevent ; |
nevent=maxevent-minevent ; |
142 |
} |
} |
143 |
|
|
144 |
Long64_t obt=0; |
// |
145 |
const Int_t sizeH=neventH; |
// information about the RunHeader |
146 |
ULong64_t HOBT[sizeH]; |
ULong64_t HOBT[neventH]; |
147 |
Int_t trk_cal_us[sizeH],countrun=1; |
Int_t trk_cal_us[neventH]; |
148 |
for (Int_t vi=0; vi<sizeH;vi++){ |
Int_t countnboot=1; |
149 |
|
for (Int_t vi=0; vi<neventH;vi++){ |
150 |
HOBT[vi]=0; |
HOBT[vi]=0; |
151 |
trk_cal_us[vi]=0; |
trk_cal_us[vi]=0; |
152 |
} |
} |
156 |
HOBT[ev]= pH->GetOrbitalTime(); |
HOBT[ev]= pH->GetOrbitalTime(); |
157 |
trk_cal_us[ev]=reh->TRK_CALIB_USED; |
trk_cal_us[ev]=reh->TRK_CALIB_USED; |
158 |
if((HOBT[ev]<HOBT[ev-1]) && ev>0) |
if((HOBT[ev]<HOBT[ev-1]) && ev>0) |
159 |
countrun+=1; |
countnboot+=1; |
|
// printf("\n%lld\t\tcountrun=%d\n",HOBT[ev],countrun); |
|
160 |
} |
} |
161 |
countrun+=(Int_t)nevent/30000; |
countnboot+=(Int_t)(2*nevent/MAXSTORAGE); |
162 |
printf("\ncountrun=%d\n",countrun); |
// printf("\ncountnboot=%d\n",countnboot); |
163 |
|
|
164 |
|
|
165 |
// |
// |
166 |
// other variables definitions |
// other variables definitions |
167 |
stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit; |
stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit; |
168 |
Int_t ALARM=0; |
Int_t ALARM=0; |
169 |
Int_t WARNING[12]; |
Int_t WARNING[12]; |
|
Float_t hi=0; |
|
170 |
|
|
171 |
// |
// |
172 |
// information about the entries for the temperatures |
// information about the entries for the temperatures |
177 |
maxsize+=tmpSize; |
maxsize+=tmpSize; |
178 |
} |
} |
179 |
const Int_t tsize=maxsize; |
const Int_t tsize=maxsize; |
180 |
Int_t tempt[tsize][5],xt[tsize], tempt_tmp[tsize]; |
Int_t tempt[tsize][5]; |
181 |
|
ULong64_t xt[tsize]; |
182 |
|
|
183 |
|
Int_t cntpgtemp=1,cntpgdat=0,cntpgmag=0; |
184 |
// |
// |
185 |
// information about the temperatures |
// information about the temperatures |
186 |
for (Int_t ev=0; ev<tnevent; ev++){ |
for (Int_t ev=0; ev<tnevent; ev++){ |
188 |
tmpSize = event->Records->GetEntries(); |
tmpSize = event->Records->GetEntries(); |
189 |
for (Int_t j = 0; j < tmpSize; j++){ |
for (Int_t j = 0; j < tmpSize; j++){ |
190 |
record = (pamela::TsbTRecord*)event->Records->At(j); |
record = (pamela::TsbTRecord*)event->Records->At(j); |
191 |
xt[siztmp]=record->RECORD_OBT; //0.051*record->RECORD_OBT; |
xt[siztmp]=record->RECORD_OBT; |
192 |
|
if((xt[siztmp]<xt[siztmp-1]) && siztmp>0) |
193 |
|
cntpgtemp+=1; |
194 |
|
|
195 |
for (Int_t z = 0; z < 5; z++){ |
for (Int_t z = 0; z < 5; z++){ |
196 |
tempt[siztmp][z] = record->TEMPERATURES[z+1]; |
tempt[siztmp][z] = record->TEMPERATURES[z+1]; |
197 |
} |
} |
200 |
} |
} |
201 |
|
|
202 |
// |
// |
203 |
|
// information about the entries for the magnetic field |
204 |
|
if(bnevent>0) cntpgmag=1; |
205 |
|
maxsize=0; |
206 |
|
for (Int_t ev=0; ev<bnevent; ev++){ |
207 |
|
Btree->GetEntry(ev); |
208 |
|
tmpSize = Bevent->Records->GetEntries(); |
209 |
|
maxsize+=tmpSize; |
210 |
|
} |
211 |
|
const Int_t bsize=maxsize; |
212 |
|
Int_t magt[bsize][5]; |
213 |
|
ULong64_t xb[bsize]; |
214 |
|
siztmp=0; |
215 |
|
// |
216 |
|
// information about the magnetic field |
217 |
|
for (Int_t ev=0; ev<bnevent; ev++){ |
218 |
|
Btree->GetEntry(ev); |
219 |
|
tmpSize = Bevent->Records->GetEntries(); |
220 |
|
for (Int_t j = 0; j < tmpSize; j++){ |
221 |
|
Brecord = (pamela::TsbBRecord*)Bevent->Records->At(j); |
222 |
|
xb[siztmp]=Brecord->RECORD_OBT; |
223 |
|
if((xb[siztmp]<xb[siztmp-1]) && siztmp>0) |
224 |
|
cntpgmag+=1; |
225 |
|
for (Int_t z = 0; z < 5; z++){ |
226 |
|
magt[siztmp][z] = Brecord->B_FIELD[z+1]; |
227 |
|
} |
228 |
|
siztmp++; |
229 |
|
} |
230 |
|
} |
231 |
|
|
232 |
|
// |
233 |
// open the output text files for the alarms |
// open the output text files for the alarms |
234 |
TString fname1 = out+ffile; |
TString fname1 = out+ffile; |
235 |
TString fname = out+ffile; |
TString fname = out+ffile; |
247 |
// write the file for the TrkAlarm packet |
// write the file for the TrkAlarm packet |
248 |
if(alnevent==0) alarm1 <<endl<< "------> NO ALARM!!! <-------"<< endl; |
if(alnevent==0) alarm1 <<endl<< "------> NO ALARM!!! <-------"<< endl; |
249 |
else{ |
else{ |
250 |
|
Long64_t obt=0; |
251 |
for (Int_t ev=0; ev<alnevent; ev++){ |
for (Int_t ev=0; ev<alnevent; ev++){ |
252 |
altr->GetEntry(ev); |
altr->GetEntry(ev); |
253 |
ph = aleh->GetPscuHeader(); |
ph = aleh->GetPscuHeader(); |
263 |
alarm1 << "================================================="<< endl<<endl; |
alarm1 << "================================================="<< endl<<endl; |
264 |
|
|
265 |
alarm1 << "Alarm variables (range 0-1)"<<endl; |
alarm1 << "Alarm variables (range 0-1)"<<endl; |
266 |
alarm1 << " ALARM[1]= "<< hex<< (Int_t)al->ALARM[1]<<dec<<endl; |
alarm1 << " ALARM[1]= 0x"<< hex << (Int_t)al->ALARM[1]<<endl; |
267 |
alarm1 << " ALARM[2]= "<< hex<< (Int_t)al->ALARM[2]<<dec<<endl; |
alarm1 << " ALARM[2]= 0x"<< (Int_t)al->ALARM[2]<<endl; |
268 |
alarm1 << " CmdDuringTrig= "<< hex<<(Int_t)al->CmdDuringTrig<<endl; |
alarm1 << " CmdDuringTrig= 0x"<< (Int_t)al->CmdDuringTrig<<endl; |
269 |
alarm1 << " FinalCheck= "<< hex<<(Int_t)al->FinalCheck<<endl; |
alarm1 << " FinalCheck= 0x"<< (Int_t)al->FinalCheck<<endl; |
270 |
alarm1 << " FlashData= "<< hex<<(Int_t)al->FlashData<<endl; |
alarm1 << " FlashData= 0x"<< (Int_t)al->FlashData<<endl; |
271 |
alarm1 << " FlashShutdown= "<< hex<<(Int_t)al->FlashShutdown<<endl; |
alarm1 << " FlashShutdown= 0x"<< (Int_t)al->FlashShutdown<<endl; |
272 |
alarm1 << " FlashUpset= "<< hex<<(Int_t)al->FlashUpset<<endl; |
alarm1 << " FlashUpset= 0x"<< (Int_t)al->FlashUpset<<endl; |
273 |
alarm1 << " InterCheck= "<< hex<<(Int_t)al->InterCheck<<endl; |
alarm1 << " InterCheck= 0x"<< (Int_t)al->InterCheck<<endl; |
274 |
alarm1 << " UnknownCmd= "<< hex<<(Int_t)al->UnknownCmd<<endl<<endl; |
alarm1 << " UnknownCmd= 0x"<<(Int_t)al->UnknownCmd<<endl<<endl; |
275 |
|
|
276 |
alarm1 << "Alarm variables (range 0-3F)"<<endl; |
alarm1 << "Alarm variables (range 0-3F)"<<endl; |
277 |
alarm1 << " CmdIDMA= "<< hex<<(Int_t)al->CmdIDMA<<endl; |
alarm1 << " CmdIDMA= 0x"<< (Int_t)al->CmdIDMA<<endl; |
278 |
alarm1 << " DSPSoft= "<< hex<<(Int_t)al->DSPSoft<<endl; |
alarm1 << " DSPSoft= 0x"<< (Int_t)al->DSPSoft<<endl; |
279 |
alarm1 << " TrigIDMA= "<< hex<<(Int_t)al->TrigIDMA<<endl<<endl; |
alarm1 << " TrigIDMA= 0x"<< (Int_t)al->TrigIDMA<<endl<<endl; |
280 |
|
|
281 |
alarm1 << "Alarm bits (range 0-1)"<<endl; |
alarm1 << "Control variables (range 0-3F)"<<endl; |
282 |
alarm1 << " Aswr= "<< hex<<(Int_t)al->Aswr<<endl; |
alarm1 << " DSPBusy= 0x"<< (Int_t)al->DSPBusy<<endl; |
283 |
alarm1 << " BID[1]= "<< hex<<(Int_t)al->BID[0]<<endl; |
alarm1 << " DSPMask= 0x"<< (Int_t)al->DSPMask<<endl<<endl; |
284 |
alarm1 << " BID[2]= "<< hex<<(Int_t)al->BID[1]<<endl; |
|
285 |
alarm1 << " BID[3]= "<< hex<<(Int_t)al->BID[2]<<endl; |
alarm1 << "Control variables (range 0-1)"<<endl; |
286 |
alarm1 << " BID[4]= "<< hex<<(Int_t)al->BID[3]<<endl; |
alarm1 << " FlashOn= 0x"<< (Int_t)al->FlashOn<<endl<<endl; |
287 |
alarm1 << " BID[5]= "<< hex<<(Int_t)al->BID[4]<<endl; |
|
288 |
alarm1 << " BID[6]= "<< hex<<(Int_t)al->BID[5]<<endl; |
alarm1 << "Control variables (range 0-3)"<<endl; |
289 |
alarm1 << " BID[7]= "<< hex<<(Int_t)al->BID[6]<<endl; |
alarm1 << " TrigMask= 0x"<< (Int_t)al->TrigMask<<endl<<endl; |
290 |
alarm1 << " CmdNum= "<< hex<<(Int_t)al->CmdNum<<endl; |
|
291 |
alarm1 << " DSPBusy= "<< hex<<(Int_t)al->DSPBusy<<endl; |
alarm1 << "Control bits fixed"<<endl; |
292 |
alarm1 << " DSPMask= "<< hex<<(Int_t)al->DSPMask<<endl; |
alarm1 << " Aswr= 0x"<< (Int_t)al->Aswr<<endl; |
293 |
alarm1 << " FlashOn= "<< hex<<(Int_t)al->FlashOn<<endl; |
alarm1 << " BID[1]= 0x"<< (Int_t)al->BID[0]<<endl; |
294 |
alarm1 << " PNum= "<< hex<<(Int_t)al->PNum<<endl; |
alarm1 << " BID[2]= 0x"<< (Int_t)al->BID[1]<<endl; |
295 |
alarm1 << " TrigMask= "<< hex<<(Int_t)al->TrigMask<<endl; |
alarm1 << " BID[3]= 0x"<< (Int_t)al->BID[2]<<endl; |
296 |
|
alarm1 << " BID[4]= 0x"<< (Int_t)al->BID[3]<<endl; |
297 |
|
alarm1 << " BID[5]= 0x"<< (Int_t)al->BID[4]<<endl; |
298 |
|
alarm1 << " BID[6]= 0x"<< (Int_t)al->BID[5]<<endl; |
299 |
|
alarm1 << " BID[7]= 0x"<< (Int_t)al->BID[6]<<endl; |
300 |
|
alarm1 << " CmdNum= 0x"<< (Int_t)al->CmdNum<<endl; |
301 |
|
alarm1 << " PNum= 0x"<< (Int_t)al->PNum<< dec <<endl; |
302 |
|
|
303 |
alarm1 << "================================================="<< endl<<endl; |
alarm1 << "================================================="<< endl<<endl; |
304 |
|
|
305 |
} |
} |
306 |
} |
} |
307 |
|
|
308 |
|
// |
309 |
|
// Set Style options |
310 |
gStyle->SetLabelSize(0.05,"x"); |
gStyle->SetLabelSize(0.05,"x"); |
311 |
gStyle->SetLabelSize(0.06,"y"); |
gStyle->SetLabelSize(0.06,"y"); |
312 |
gStyle->SetStatFontSize(0.075); |
gStyle->SetStatFontSize(0.075); |
313 |
gStyle->SetOptStat(1110); |
gStyle->SetOptStat(1110); |
314 |
gStyle->SetFillColor(10); |
gStyle->SetFillColor(10); |
315 |
|
gStyle->SetStatColor(10); |
316 |
gStyle->SetTitleFillColor(10); |
gStyle->SetTitleFillColor(10); |
317 |
gStyle->SetTitleFontSize(0.1); |
gStyle->SetTitleFontSize(0.1); |
318 |
gStyle->SetTitleOffset(0.8,"y"); |
gStyle->SetTitleOffset(0.8,"y"); |
320 |
gStyle->SetTitleSize(0.06,"y"); |
gStyle->SetTitleSize(0.06,"y"); |
321 |
gStyle->SetTitleSize(0.055,"x"); |
gStyle->SetTitleSize(0.055,"x"); |
322 |
|
|
323 |
|
// |
324 |
|
// Define output canvas, histos and graphs |
325 |
|
TCanvas *CompTimeCanv[countnboot],*EventNumCanv[countnboot],*TempCanv[cntpgtemp],*BfieldCanv[cntpgmag]; |
326 |
|
TCanvas *IlluminaCanv,*LandauCanv1,*LandauCanv2,*LandauCanv3; |
327 |
|
|
328 |
|
TH1F *landau1[12],*landau2[12],*landau3[12],*illuminazione[12]; |
329 |
|
TGraph *comprtime[12][countnboot],*temp[5][cntpgtemp],*tempw[5][cntpgtemp],*eventnumb[countnboot],*mag[5][cntpgmag]; |
330 |
|
TPad *pad1[12],*pad2[12],*pad3[12],*pad4[12],*pad5[12],*pad6[5],*pad7[5]; |
331 |
|
|
332 |
|
for(Int_t n = 0; n<12; n++) { |
333 |
|
|
334 |
|
/* -----------> HISTOGRAMS */ |
335 |
|
|
336 |
|
tit<<"DSP "<<n+1; |
337 |
|
oss1<<"DSP "<<n+1; |
338 |
|
oss2<<"DSPh "<<n+1; |
339 |
|
oss3<<"DSP h "<<n+1; |
340 |
|
oss4<<"DSP h"<<n+1; |
341 |
|
|
342 |
|
landau1[n]= new TH1F(oss1.str().c_str(),tit.str().c_str(),401,-0.5,1200.5); |
343 |
|
landau2[n]= new TH1F(oss2.str().c_str(),tit.str().c_str(),401,-0.5,1200.5); |
344 |
|
landau3[n]= new TH1F(oss3.str().c_str(),tit.str().c_str(),401,-0.5,1200.5); |
345 |
|
|
346 |
|
illuminazione[n]= new TH1F(oss4.str().c_str(),tit.str().c_str(),3073,-0.5,3072.5); |
347 |
|
|
348 |
|
tit.str(""); |
349 |
|
oss1.str(""); |
350 |
|
oss2.str(""); |
351 |
|
oss3.str(""); |
352 |
|
oss4.str(""); |
353 |
|
}; |
354 |
|
|
355 |
|
|
356 |
//*************************************************************************************** |
//*************************************************************************************** |
357 |
// LOOP on each event |
// LOOP on each event |
361 |
printf("\n Scan of events from %i to %i ... \n",minevent,maxevent-1); |
printf("\n Scan of events from %i to %i ... \n",minevent,maxevent-1); |
362 |
else |
else |
363 |
printf("\n Scan of events from %i to %i ... \n",minevent+1,maxevent); |
printf("\n Scan of events from %i to %i ... \n",minevent+1,maxevent); |
|
|
|
|
|
|
|
Int_t minev=minevent,maxev=maxevent,countTEMP=0; |
|
|
TCanvas *CompTimeCanv[countrun],*EventNumCanv[countrun],*LandauCanv1[countrun],*LandauCanv2[countrun],*LandauCanv3[countrun]; |
|
|
TCanvas *IlluminaCanv[countrun],*TempCanv[countrun]; |
|
|
TGraph *comprtime[12][countrun],*temp[5][countrun]; |
|
|
TGraph *eventnumb[countrun]; |
|
|
TH1F *landau1[12][countrun],*landau2[12][countrun],*landau3[12][countrun],*illuminazione[12][countrun]; |
|
|
|
|
|
for(Int_t ii=0; ii<countrun;ii++){ |
|
|
TPaveText *pt1; |
|
|
TPad *pt,*pt0; |
|
|
TPad *pad1[12],*pad2[12],*pad3[12],*pad4[12],*pad5[12],*pad6[5]; //pad for histos |
|
|
|
|
364 |
|
|
365 |
ofstream warning(out + "warning.txt",ios::out); |
TLatex *t=new TLatex(); |
366 |
|
TLatex *t1=new TLatex(); |
367 |
|
|
|
//**************************************************************************************** |
|
|
//Output figures --- First sheet: |
|
|
//**************************************************************************************** |
|
368 |
|
|
369 |
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
Int_t minev=minevent,maxev=maxevent,countTEMP=0,countMAG=0; |
|
isfile<<"COMPRESSIONTIME vs. OBT pag"<<ii+1; |
|
|
CompTimeCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
|
|
CompTimeCanv[ii]->SetFillColor(10); |
|
|
CompTimeCanv[ii]->Range(0,0,100,100); |
|
|
TLatex *t=new TLatex(); |
|
|
t->SetTextFont(32); |
|
|
t->SetTextColor(1); |
|
|
t->SetTextAlign(12); |
|
|
t->SetTextSize(0.02); |
|
|
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
|
|
TLatex *t1=new TLatex(); |
|
|
t1->SetTextFont(32); |
|
|
t1->SetTextColor(1); |
|
|
t1->SetTextAlign(12); |
|
|
t1->SetTextSize(0.02); |
|
|
t1->DrawLatex(59.,98.7,isfile.str().c_str()); |
|
|
isfile.str(""); |
|
370 |
|
|
371 |
|
// |
372 |
|
// Fill temperature graphs |
373 |
|
for(Int_t ii=0; ii<cntpgtemp;ii++){ |
374 |
//**************************************************************************************** |
//**************************************************************************************** |
375 |
//Output figures --- Second sheet: |
//Temperature Output Pages |
376 |
//**************************************************************************************** |
//**************************************************************************************** |
377 |
|
fromfile.str(""); |
378 |
|
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
379 |
|
isfile<<"Temperatures vs OBT pag"<<ii+1; |
380 |
|
TempCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
381 |
|
TempCanv[ii]->SetFillColor(10); |
382 |
|
TempCanv[ii]->Range(0,0,100,100); |
383 |
|
|
|
isfile<<"WARNINGS on DSP EVENT NUMBER pag"<<ii+1; |
|
|
EventNumCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
|
|
EventNumCanv[ii]->SetFillColor(10); |
|
|
EventNumCanv[ii]->Range(0,0,100,100); |
|
384 |
t->SetTextFont(32); |
t->SetTextFont(32); |
385 |
t->SetTextColor(1); |
t->SetTextColor(1); |
386 |
t->SetTextAlign(12); |
t->SetTextAlign(12); |
390 |
t1->SetTextColor(1); |
t1->SetTextColor(1); |
391 |
t1->SetTextAlign(12); |
t1->SetTextAlign(12); |
392 |
t1->SetTextSize(0.02); |
t1->SetTextSize(0.02); |
393 |
t1->DrawLatex(63.4,98.7,isfile.str().c_str()); |
t1->DrawLatex(78.,98.7,isfile.str().c_str()); |
394 |
|
isfile.str(""); |
395 |
|
t1->SetTextSize(0.025); |
396 |
|
t1->SetTextColor(196); |
397 |
|
isfile<<"--> Values at 28.5^{o}C (if presents) correspond"; |
398 |
|
t1->DrawLatex(50.,22.,isfile.str().c_str()); |
399 |
|
isfile.str(""); |
400 |
|
isfile<<" to wrong readings ( > 100^{o}C) of the Tsb"; |
401 |
|
t1->DrawLatex(50.,19.,isfile.str().c_str()); |
402 |
|
isfile.str(""); |
403 |
|
isfile<<"--> Values at 25.5^{o}C (if presents) correspond"; |
404 |
|
t1->DrawLatex(50.,12.,isfile.str().c_str()); |
405 |
|
isfile.str(""); |
406 |
|
isfile<<" to wrong readings ( < 0^{o}C) of the Tsb"; |
407 |
|
t1->DrawLatex(50.,9.,isfile.str().c_str()); |
408 |
isfile.str(""); |
isfile.str(""); |
409 |
|
|
410 |
|
Float_t tposy = 0.95; // up y-coord - top pads |
411 |
|
Float_t thpad = 0; // pad height |
412 |
|
Float_t tposx1=0; // left x-coord - pad column |
413 |
|
Float_t tposx0=0; // x-coord - column division |
414 |
|
Float_t twrel = 0; // relative x size of first sub-column |
415 |
|
Float_t tmarg = 0.004; // margin among pads |
416 |
|
|
417 |
|
thpad = (tposy-tmarg*5)/3; |
418 |
|
twrel = (1-tmarg*4)/2; |
419 |
|
|
420 |
|
for(Int_t i=0; i<5; i++){ |
421 |
|
if ( (i+1)%2==1 ) { |
422 |
|
if(i>1) tposy = tposy-(tmarg*2+thpad); |
423 |
|
tposx1 = tmarg; |
424 |
|
tposx0 = tposx1 + twrel; |
425 |
|
} |
426 |
|
else { |
427 |
|
tposx1 = tposx0 + 2*tmarg; |
428 |
|
tposx0 = tposx1 + twrel; |
429 |
|
} |
430 |
|
|
431 |
|
/* -----------> pad for histograms */ |
432 |
|
pad6[i] = new TPad("pad6"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0); |
433 |
|
|
434 |
|
Int_t v=0,vv=0; |
435 |
|
Double_t xt_tmp[tsize], tempt_tmp[tsize]; |
436 |
|
Double_t xt_tmpw[tsize], tempt_tmpw[tsize]; |
437 |
|
for (Int_t ev=countTEMP; ev<tsize; ev++){ |
438 |
|
|
439 |
|
if(ev==tsize-1 && i==4 && ii==cntpgtemp-1) countTEMP=tsize-1; |
440 |
|
if(xt[ev]<xt[ev-1] && ev>countTEMP){ |
441 |
|
if(i==4) countTEMP=ev; |
442 |
|
break; |
443 |
|
} |
444 |
|
else{ |
445 |
|
tempt_tmp[v]=(Double_t)((Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231)); |
446 |
|
if(tempt_tmp[v]>100) { |
447 |
|
tempt_tmp[v]=28.5; |
448 |
|
tempt_tmpw[vv]=28.5; |
449 |
|
xt_tmpw[vv++]=(Double_t)xt[ev]; |
450 |
|
} |
451 |
|
else if(tempt_tmp[v]<0){ |
452 |
|
tempt_tmp[v]=25.5; |
453 |
|
tempt_tmpw[vv]=25.5; |
454 |
|
xt_tmpw[vv++]=(Double_t)xt[ev]; |
455 |
|
} |
456 |
|
xt_tmp[v++]=(Double_t)xt[ev]; |
457 |
|
} |
458 |
|
} |
459 |
|
TempCanv[ii]->cd(); |
460 |
|
tit<<"T"<<i+5<<" (magnetic module "<<i+1<<")"; |
461 |
|
pad6[i]->SetFillColor(10); |
462 |
|
pad6[i]->Draw(); |
463 |
|
pad6[i]->cd(); |
464 |
|
temp[i][ii]= new TGraph(v,xt_tmp,tempt_tmp); |
465 |
|
temp[i][ii]->SetTitle(tit.str().c_str()); |
466 |
|
temp[i][ii]->GetXaxis()->SetLabelSize(0.04); |
467 |
|
temp[i][ii]->GetXaxis()->SetTitleSize(0.04); |
468 |
|
temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)"); |
469 |
|
temp[i][ii]->GetXaxis()->CenterTitle(); |
470 |
|
temp[i][ii]->GetXaxis()->SetTitleOffset(0.85); |
471 |
|
temp[i][ii]->GetYaxis()->SetTitleOffset(1.2); |
472 |
|
temp[i][ii]->GetYaxis()->SetLabelOffset(0.001); |
473 |
|
temp[i][ii]->GetYaxis()->SetLabelSize(0.04); |
474 |
|
temp[i][ii]->GetYaxis()->SetTitleSize(0.04); |
475 |
|
temp[i][ii]->GetYaxis()->SetTitle("Temperatures ( ^{o}C)"); |
476 |
|
temp[i][ii]->GetYaxis()->CenterTitle(); |
477 |
|
temp[i][ii]->SetMarkerStyle(21); |
478 |
|
temp[i][ii]->SetMarkerSize(0.2); |
479 |
|
temp[i][ii]->Draw("ap"); |
480 |
|
tit.str(""); |
481 |
|
if(vv>0){ |
482 |
|
tempw[i][ii]= new TGraph(vv,xt_tmpw,tempt_tmpw); |
483 |
|
tempw[i][ii]->SetMarkerStyle(21); |
484 |
|
tempw[i][ii]->SetMarkerSize(0.2); |
485 |
|
tempw[i][ii]->SetMarkerColor(196); |
486 |
|
tempw[i][ii]->Draw("samep"); |
487 |
|
} |
488 |
|
TempCanv[ii]->Update(); |
489 |
|
|
490 |
|
|
491 |
|
} |
492 |
|
if(countTEMP==tsize-1 && ii==cntpgtemp-1){ |
493 |
|
break; |
494 |
|
} |
495 |
|
} |
496 |
|
|
497 |
|
// |
498 |
|
// Fill magnetic field graphs |
499 |
|
for(Int_t ii=0; ii<cntpgmag;ii++){ |
500 |
//**************************************************************************************** |
//**************************************************************************************** |
501 |
//Output figures --- Third sheet: |
//Magnetic Field Output Pages |
502 |
//**************************************************************************************** |
//**************************************************************************************** |
503 |
|
fromfile.str(""); |
504 |
isfile<<"Cluster Signal ladder1 pag"<<ii+1; |
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
505 |
LandauCanv1[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
isfile<<"Magnetic Axial Field vs OBT pag"<<ii+1; |
506 |
LandauCanv1[ii]->SetFillColor(10); |
BfieldCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
507 |
LandauCanv1[ii]->Range(0,0,100,100); |
BfieldCanv[ii]->SetFillColor(10); |
508 |
|
BfieldCanv[ii]->Range(0,0,100,100); |
509 |
|
|
510 |
t->SetTextFont(32); |
t->SetTextFont(32); |
511 |
t->SetTextColor(1); |
t->SetTextColor(1); |
512 |
t->SetTextAlign(12); |
t->SetTextAlign(12); |
516 |
t1->SetTextColor(1); |
t1->SetTextColor(1); |
517 |
t1->SetTextAlign(12); |
t1->SetTextAlign(12); |
518 |
t1->SetTextSize(0.02); |
t1->SetTextSize(0.02); |
519 |
t1->DrawLatex(60.,98.7,isfile.str().c_str()); |
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
520 |
isfile.str(""); |
isfile.str(""); |
521 |
|
|
522 |
//**************************************************************************************** |
TLine li; |
523 |
//Output figures --- Third sheet: |
li.SetLineStyle(1); |
524 |
//**************************************************************************************** |
li.SetLineWidth(1); |
525 |
|
li.SetLineColor(190); |
526 |
isfile<<"Cluster Signal ladder2 pag"<<ii+1; |
t1->SetTextColor(190); |
527 |
LandauCanv2[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
t1->SetTextSize(0.04); |
528 |
LandauCanv2[ii]->SetFillColor(10); |
|
529 |
LandauCanv2[ii]->Range(0,0,100,100); |
Float_t tposy = 0.95; // up y-coord - top pads |
530 |
|
Float_t thpad = 0; // pad height |
531 |
|
Float_t tposx1=0; // left x-coord - pad column |
532 |
|
Float_t tposx0=0; // x-coord - column division |
533 |
|
Float_t twrel = 0; // relative x size of first sub-column |
534 |
|
Float_t tmarg = 0.004; // margin among pads |
535 |
|
|
536 |
|
thpad = (tposy-tmarg*5)/3; |
537 |
|
twrel = (1-tmarg*4)/2; |
538 |
|
|
539 |
|
for(Int_t i=0; i<5; i++){ |
540 |
|
if ( (i+1)%2==1 ) { |
541 |
|
if(i>1) tposy = tposy-(tmarg*2+thpad); |
542 |
|
tposx1 = tmarg; |
543 |
|
tposx0 = tposx1 + twrel; |
544 |
|
} |
545 |
|
else { |
546 |
|
tposx1 = tposx0 + 2*tmarg; |
547 |
|
tposx0 = tposx1 + twrel; |
548 |
|
} |
549 |
|
|
550 |
|
/* -----------> pad for histograms */ |
551 |
|
pad7[i] = new TPad("pad7"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0); |
552 |
|
|
553 |
|
Int_t v=0; |
554 |
|
Double_t xb_tmp[bsize], magt_tmp[bsize]; |
555 |
|
for (Int_t ev=countMAG; ev<bsize; ev++){ |
556 |
|
|
557 |
|
if(ev==bsize-1 && i==4 && ii==cntpgmag-1) countMAG=bsize-1; |
558 |
|
if(xb[ev]<xb[ev-1] && ev>countMAG){ |
559 |
|
if(i==4) countMAG=ev; |
560 |
|
break; |
561 |
|
} |
562 |
|
else{ |
563 |
|
magt_tmp[v]=(Double_t)magt[ev][i]; |
564 |
|
xb_tmp[v++]=(Double_t)xb[ev]; |
565 |
|
} |
566 |
|
} |
567 |
|
BfieldCanv[ii]->cd(); |
568 |
|
tit<<"B"<<i+5<<" (magnetic module "<<i+1<<")"; |
569 |
|
pad7[i]->SetFillColor(10); |
570 |
|
pad7[i]->Draw(); |
571 |
|
pad7[i]->cd(); |
572 |
|
mag[i][ii]= new TGraph(v,xb_tmp,magt_tmp); |
573 |
|
mag[i][ii]->SetTitle(tit.str().c_str()); |
574 |
|
mag[i][ii]->GetXaxis()->SetNdivisions(502,kTRUE); |
575 |
|
mag[i][ii]->GetXaxis()->SetLabelSize(0.04); |
576 |
|
mag[i][ii]->GetXaxis()->SetTitleSize(0.04); |
577 |
|
mag[i][ii]->GetXaxis()->SetTitle("OBT (ms)"); |
578 |
|
mag[i][ii]->GetXaxis()->CenterTitle(); |
579 |
|
mag[i][ii]->GetXaxis()->SetTitleOffset(0.85); |
580 |
|
if(i!=4) mag[i][ii]->GetYaxis()->SetRangeUser(2047,2058); |
581 |
|
else mag[i][ii]->GetYaxis()->SetRangeUser(2060,2066); |
582 |
|
mag[i][ii]->GetYaxis()->SetTitleOffset(1.2); |
583 |
|
mag[i][ii]->GetYaxis()->SetLabelOffset(0.001); |
584 |
|
mag[i][ii]->GetYaxis()->SetLabelSize(0.03); |
585 |
|
mag[i][ii]->GetYaxis()->SetTitleSize(0.04); |
586 |
|
mag[i][ii]->GetYaxis()->SetTitle("Magnetic Field (au)"); |
587 |
|
mag[i][ii]->GetYaxis()->CenterTitle(); |
588 |
|
mag[i][ii]->SetMarkerStyle(21); |
589 |
|
mag[i][ii]->SetMarkerSize(0.4); |
590 |
|
mag[i][ii]->Draw("ap"); |
591 |
|
Double_t min=0.,max=0,xlat=0.; |
592 |
|
min=mag[i][ii]->GetXaxis()->GetXmin(); |
593 |
|
max=mag[i][ii]->GetXaxis()->GetXmax(); |
594 |
|
xlat=min+(max-min)/2; |
595 |
|
stringstream mi,ma; |
596 |
|
mi<<"minimum recorded value"; |
597 |
|
ma<<"maximum recorded value"; |
598 |
|
t->SetTextSize(0.1); |
599 |
|
switch(i){ |
600 |
|
case 0: |
601 |
|
li.DrawLine(min,2054.,max,2054.); |
602 |
|
li.DrawLine(min,2048.,max,2048.); |
603 |
|
t1->DrawLatex(xlat,2054.3,ma.str().c_str()); |
604 |
|
t1->DrawLatex(xlat,2047.7,mi.str().c_str()); |
605 |
|
break; |
606 |
|
|
607 |
|
case 1: |
608 |
|
li.DrawLine(min,2055.,max,2055.); |
609 |
|
li.DrawLine(min,2050.,max,2050.); |
610 |
|
t1->DrawLatex(xlat,2055.3,ma.str().c_str()); |
611 |
|
t1->DrawLatex(xlat,2049.7,mi.str().c_str()); |
612 |
|
break; |
613 |
|
|
614 |
t->SetTextFont(32); |
case 2: |
615 |
t->SetTextColor(1); |
li.DrawLine(min,2056.,max,2056.); |
616 |
t->SetTextAlign(12); |
li.DrawLine(min,2051.,max,2051.); |
617 |
t->SetTextSize(0.02); |
t1->DrawLatex(xlat,2056.3,ma.str().c_str()); |
618 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
t1->DrawLatex(xlat,2050.7,mi.str().c_str()); |
619 |
t1->SetTextFont(32); |
break; |
620 |
t1->SetTextColor(1); |
|
621 |
t1->SetTextAlign(12); |
case 3: |
622 |
t1->SetTextSize(0.02); |
li.DrawLine(min,2057.,max,2057.); |
623 |
t1->DrawLatex(60.,98.7,isfile.str().c_str()); |
li.DrawLine(min,2052.,max,2052.); |
624 |
isfile.str(""); |
t1->DrawLatex(xlat,2057.3,ma.str().c_str()); |
625 |
|
t1->DrawLatex(xlat,2051.7,mi.str().c_str()); |
626 |
|
break; |
627 |
|
|
628 |
//**************************************************************************************** |
case 4: |
629 |
//Output figures --- Third sheet: |
li.DrawLine(min,2065.,max,2065.); |
630 |
//**************************************************************************************** |
li.DrawLine(min,2061.,max,2061.); |
631 |
|
t1->DrawLatex(xlat,2065.15,ma.str().c_str()); |
632 |
|
t1->DrawLatex(xlat,2060.85,mi.str().c_str()); |
633 |
|
break; |
634 |
|
|
635 |
isfile<<"Cluster Signal ladder3 pag"<<ii+1; |
} |
636 |
LandauCanv3[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
BfieldCanv[ii]->Update(); |
637 |
LandauCanv3[ii]->SetFillColor(10); |
tit.str(""); |
638 |
LandauCanv3[ii]->Range(0,0,100,100); |
} |
639 |
|
if(countMAG==bsize-1 && ii==cntpgmag-1){ |
640 |
|
break; |
641 |
|
} |
642 |
|
} |
643 |
|
|
644 |
|
|
645 |
t->SetTextFont(32); |
// |
646 |
t->SetTextColor(1); |
// Fill compressiontime and eventnumber graphs and DSP warnings |
647 |
t->SetTextAlign(12); |
for(Int_t ii=0; ii<countnboot;ii++){ |
648 |
t->SetTextSize(0.02); |
TPad *pt; //pad for histos |
|
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
|
|
t1->SetTextFont(32); |
|
|
t1->SetTextColor(1); |
|
|
t1->SetTextAlign(12); |
|
|
t1->SetTextSize(0.02); |
|
|
t1->DrawLatex(60.,98.7,isfile.str().c_str()); |
|
|
isfile.str(""); |
|
649 |
|
|
650 |
//**************************************************************************************** |
//**************************************************************************************** |
651 |
//Output figures --- Fourth sheet: |
//COMPRESSIONTIME vs. OBT Output Pages |
652 |
//**************************************************************************************** |
//**************************************************************************************** |
653 |
|
fromfile.str(""); |
654 |
isfile<<"lighting of the views pag"<<ii+1; |
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
655 |
IlluminaCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
isfile<<"COMPRESSIONTIME vs. OBT pag"<<ii+1; |
656 |
IlluminaCanv[ii]->SetFillColor(10); |
CompTimeCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
657 |
IlluminaCanv[ii]->Range(0,0,100,100); |
CompTimeCanv[ii]->SetFillColor(10); |
658 |
|
CompTimeCanv[ii]->Range(0,0,100,100); |
659 |
t->SetTextFont(32); |
t->SetTextFont(32); |
660 |
t->SetTextColor(1); |
t->SetTextColor(1); |
661 |
t->SetTextAlign(12); |
t->SetTextAlign(12); |
665 |
t1->SetTextColor(1); |
t1->SetTextColor(1); |
666 |
t1->SetTextAlign(12); |
t1->SetTextAlign(12); |
667 |
t1->SetTextSize(0.02); |
t1->SetTextSize(0.02); |
668 |
t1->DrawLatex(65.,98.7,isfile.str().c_str()); |
t1->DrawLatex(62.,98.7,isfile.str().c_str()); |
669 |
isfile.str(""); |
isfile.str(""); |
670 |
|
|
671 |
//**************************************************************************************** |
//**************************************************************************************** |
672 |
//Output figures --- Fifth sheet: |
//DSP EVENT NUMBER Output Pages |
673 |
//**************************************************************************************** |
//**************************************************************************************** |
|
|
|
|
isfile<<"Temperatures vs OBT pag"<<ii+1; |
|
|
TempCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
|
|
TempCanv[ii]->SetFillColor(10); |
|
|
TempCanv[ii]->Range(0,0,100,100); |
|
674 |
|
|
675 |
|
isfile<<"DSP EVENT NUMBER vs. OBT pag"<<ii+1; |
676 |
|
EventNumCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
677 |
|
EventNumCanv[ii]->SetFillColor(10); |
678 |
|
EventNumCanv[ii]->Range(0,0,100,100); |
679 |
t->SetTextFont(32); |
t->SetTextFont(32); |
680 |
t->SetTextColor(1); |
t->SetTextColor(1); |
681 |
t->SetTextAlign(12); |
t->SetTextAlign(12); |
685 |
t1->SetTextColor(1); |
t1->SetTextColor(1); |
686 |
t1->SetTextAlign(12); |
t1->SetTextAlign(12); |
687 |
t1->SetTextSize(0.02); |
t1->SetTextSize(0.02); |
688 |
t1->DrawLatex(75.,98.7,isfile.str().c_str()); |
t1->DrawLatex(62.,98.7,isfile.str().c_str()); |
689 |
isfile.str(""); |
isfile.str(""); |
690 |
|
|
|
//************************************************************************************* |
|
|
//book pads and histos |
|
|
//*************************************************************************************** |
|
691 |
Float_t posy = 0.95; // up y-coord - top pads |
Float_t posy = 0.95; // up y-coord - top pads |
692 |
Float_t hpad = 0; // pad height |
Float_t hpad = 0; // pad height |
693 |
Float_t posx1=0; // left x-coord - pad column |
Float_t posx1=0; // left x-coord - pad column |
694 |
Float_t posx0=0; // x-coord - column division |
Float_t posx0=0; // x-coord - column division |
695 |
Float_t wrel = 0; // relative x size of first sub-column |
Float_t wrel = 0; // relative x size of first sub-column |
696 |
Float_t marg = 0.004; // margin among pads |
Float_t marg = 0.004; // margin among pads |
697 |
Float_t tposy = 0.95; // up y-coord - top pads |
|
|
Float_t thpad = 0; // pad height |
|
|
Float_t tposx1=0; // left x-coord - pad column |
|
|
Float_t tposx0=0; // x-coord - column division |
|
|
Float_t twrel = 0; // relative x size of first sub-column |
|
|
Float_t tmarg = 0.004; // margin among pads |
|
|
|
|
698 |
hpad = (posy-marg*11)/6; |
hpad = (posy-marg*11)/6; |
699 |
wrel = (1-marg*4)/2; |
wrel = (1-marg*4)/2; |
700 |
thpad = (tposy-tmarg*5)/3; |
|
|
twrel = (1-tmarg*4)/2; |
|
|
|
|
701 |
for(Int_t n = 0; n<12; n++) { |
for(Int_t n = 0; n<12; n++) { |
702 |
|
|
703 |
if ( (n+1)%2==1 ) { |
if ( (n+1)%2==1 ) { |
704 |
if(n>1) posy = posy-(marg*2+hpad); |
if(n>1) posy = posy-(marg*2+hpad); |
705 |
posx1 = marg; |
posx1 = marg; |
708 |
else { |
else { |
709 |
posx1 = posx0 + 2*marg; |
posx1 = posx0 + 2*marg; |
710 |
posx0 = posx1 + wrel; |
posx0 = posx1 + wrel; |
711 |
} |
} |
712 |
|
|
|
if ( (n+1)%2==1 ) { |
|
|
if(n>1) tposy = tposy-(tmarg*2+thpad); |
|
|
tposx1 = tmarg; |
|
|
tposx0 = tposx1 + twrel; |
|
|
} |
|
|
else { |
|
|
tposx1 = tposx0 + 2*tmarg; |
|
|
tposx0 = tposx1 + twrel; |
|
|
} |
|
|
|
|
|
|
|
713 |
/* -----------> pad for histograms */ |
/* -----------> pad for histograms */ |
714 |
pad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
pad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
715 |
pad2[n] = new TPad("pad2"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
pad2[n] = new TPad("pad2"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
716 |
pad3[n] = new TPad("pad3"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
pad3[n] = new TPad("pad3"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
717 |
pad4[n] = new TPad("pad4"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
pad4[n] = new TPad("pad4"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
718 |
pad5[n] = new TPad("pad5"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
pad5[n] = new TPad("pad5"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
719 |
if(n<5) pad6[n] = new TPad("pad6"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0); |
} |
|
|
|
|
|
|
|
/* -----------> HISTOGRAMS */ |
|
|
|
|
|
oss1<<"DSP "<<n*100+ii; |
|
|
oss2<<"DSPh "<<n*100+ii; |
|
|
oss3<<"DSP h "<<n*100+ii; |
|
|
oss4<<"DSP h"<<n*100+ii; |
|
|
|
|
|
landau1[n][ii]=new TH1F(oss1.str().c_str(),oss1.str().c_str(),401,-0.5,1200.5); |
|
|
landau1[n][ii]->GetXaxis()->SetTitle("max signal"); |
|
|
landau1[n][ii]->GetXaxis()->CenterTitle(); |
|
|
landau2[n][ii]=new TH1F(oss2.str().c_str(),oss1.str().c_str(),401,-0.5,1200.5); |
|
|
landau2[n][ii]->GetXaxis()->SetTitle("max signal"); |
|
|
landau2[n][ii]->GetXaxis()->CenterTitle(); |
|
|
landau3[n][ii]=new TH1F(oss3.str().c_str(),oss1.str().c_str(),401,-0.5,1200.5); |
|
|
landau3[n][ii]->GetXaxis()->SetTitle("max signal"); |
|
|
landau3[n][ii]->GetXaxis()->CenterTitle(); |
|
|
|
|
|
illuminazione[n][ii]=new TH1F(oss4.str().c_str(),oss1.str().c_str(),3073,-0.5,3072.5); |
|
|
illuminazione[n][ii]->GetXaxis()->SetTitle("strip with max signal"); |
|
|
illuminazione[n][ii]->GetXaxis()->CenterTitle(); |
|
|
|
|
|
oss1.str(""); |
|
|
oss2.str(""); |
|
|
oss3.str(""); |
|
|
oss4.str(""); |
|
|
}; |
|
|
|
|
|
|
|
|
// printf("\nprova0\n"); |
|
|
|
|
|
|
|
|
//********************************************************************************** |
|
|
// Fill Graphs and Histos |
|
|
//********************************************************************************** |
|
720 |
|
|
721 |
// |
// |
722 |
// information about the tracker data |
// Obtain information about the tracker data |
723 |
Int_t warning_dspnumber=0; |
// and fill graphs and histos |
|
Float_t x[30000]; |
|
|
Float_t yc[30000][12]; |
|
|
Float_t eventint[30000]; |
|
724 |
|
|
725 |
|
Int_t al=0; |
726 |
|
Double_t x[MAXSTORAGE]; |
727 |
|
Float_t yc[MAXSTORAGE][12]; |
728 |
|
Double_t eventint[MAXSTORAGE]; |
729 |
|
Int_t eventn[12]; |
730 |
|
|
731 |
for (Int_t ev=minev; ev<maxevent; ev++){ |
for (Int_t ev=minev; ev<maxevent; ev++){ |
732 |
tr->GetEntry(ev); |
tr->GetEntry(ev); |
733 |
ph = eh->GetPscuHeader(); |
ph = eh->GetPscuHeader(); |
734 |
|
cod = eh->GetCounter(); |
735 |
|
|
736 |
|
|
737 |
if(ev==maxevent-1) maxev=maxevent-1; |
if(ev==maxevent-1) maxev=maxevent-1; |
738 |
|
|
739 |
if((ph->GetOrbitalTime()<x[ev-minev-1] && ev-minev!=0) || ev-minev==30000){ |
if((ph->GetOrbitalTime()<x[ev-minev-1] && ev-minev!=0) || ev-minev==MAXSTORAGE){ |
740 |
maxev=ev; |
maxev=ev; |
|
printf("prova12 ev=%d\tev-minev=%d\n",ev,ev-minev); |
|
741 |
break; |
break; |
742 |
} |
} |
743 |
else{ |
else{ |
|
// if(ii==32)printf("\nprova1 %d\tev-minev=%d\n",ev,ev-minev); |
|
744 |
x[(ev-minev)]= ph->GetOrbitalTime(); |
x[(ev-minev)]= ph->GetOrbitalTime(); |
745 |
ALARM=0; |
ALARM=0; |
746 |
|
|
747 |
Int_t dsp=0; |
Int_t dsp=0; |
748 |
for(Int_t i=0; i<12; i++){ |
for(Int_t i=0; i<12; i++){ |
749 |
|
if(te->DSPnumber[i]<1 || te->DSPnumber[i]>12) { |
750 |
|
ALARM=1; |
751 |
|
break; |
752 |
|
} |
753 |
|
|
754 |
dsp=te->DSPnumber[i]-1; |
dsp=te->DSPnumber[i]-1; |
755 |
yc[(ev-minev)][dsp]= 0.051*te->compressiontime[i]; |
yc[(ev-minev)][dsp]= 0.051*te->compressiontime[i]; |
756 |
|
|
757 |
|
// |
758 |
|
// Fill Cluster Signal and Lighting of the view histos |
759 |
for(Int_t j=0;j<3;j++){ |
for(Int_t j=0;j<3;j++){ |
760 |
if(te->signcluster[i][j]!=0){ |
if(te->signcluster[i][j]!=0){ |
761 |
hi=(j*1024)+te->addrcluster[i][j]; |
if((te->addrcluster[i][j]>6 && te->addrcluster[i][j]<505) ||(te->addrcluster[i][j]>518 && te->addrcluster[i][j]<1018)){ |
762 |
if((hi>505 && hi<519) ||(hi>1017 && hi<1031) ||(hi>1529 && hi<1543) || (hi>2041 && hi<2055) ||(hi>2553 && hi<2567)) |
illuminazione[dsp]->Fill((Float_t)((j*1024.)+te->addrcluster[i][j])); |
|
continue; |
|
|
else illuminazione[dsp][ii]->Fill(hi); |
|
|
|
|
|
if(!(dsp%2)){ |
|
|
landau1[dsp][ii]->Fill(1024-(te->signcluster[i][j])); |
|
|
landau2[dsp][ii]->Fill(1024-(te->signcluster[i][j])); |
|
|
landau3[dsp][ii]->Fill(1024-(te->signcluster[i][j])); |
|
|
} |
|
|
else{ |
|
|
landau1[dsp][ii]->Fill(te->signcluster[i][j]); |
|
|
landau2[dsp][ii]->Fill(te->signcluster[i][j]); |
|
|
landau3[dsp][ii]->Fill(te->signcluster[i][j]); |
|
763 |
} |
} |
764 |
} |
} |
765 |
} |
} |
766 |
|
if(trk_cal_us[cod->Get(pctp->RunHeader)]!=104){ |
767 |
|
if(!(dsp%2)){ |
768 |
|
if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)(1024.-te->signcluster[i][0])); |
769 |
|
if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)(1024.-te->signcluster[i][1])); |
770 |
|
if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)(1024.-te->signcluster[i][2])); |
771 |
|
} |
772 |
|
else{ |
773 |
|
if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)te->signcluster[i][0]); |
774 |
|
if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)te->signcluster[i][1]); |
775 |
|
if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)te->signcluster[i][2]); |
776 |
|
} |
777 |
|
} |
778 |
|
|
779 |
WARNING[i]=0; |
WARNING[i]=0; |
780 |
if(te->fc[i]!=0 || te->fl1[i]!=0 || te->fl2[i]!=0 || te->fl3[i]!=0 || te->fl4[i]!=0 || te->fl5[i]!=0 || te->fl6[i]!=0){ |
if(te->fc[i]!=0 || te->fl1[i]!=0 || te->fl2[i]!=0 || te->fl3[i]!=0 || te->fl4[i]!=0 || te->fl5[i]!=0 || te->fl6[i]!=0){ |
781 |
ALARM = 1; //general alarm |
ALARM = 1; //general alarm |
789 |
//************************************************************************************** |
//************************************************************************************** |
790 |
// warning for internal number |
// warning for internal number |
791 |
//************************************************************************************** |
//************************************************************************************** |
792 |
if(i<=10){ |
if(i<=10 && te->eventn[i]!=te->eventn[i+1]) ALARM=1; |
793 |
if(te->eventn[i]!=te->eventn[i+1]){ |
if((ev-minev)>=1 && eventn[i]+1!=te->eventn[i] && te->eventn[i]!=1) ALARM=1; |
|
warning_dspnumber++; |
|
|
warning<< "==> WARNING!! Check entry "<< ev<<" (DSP "<<dsp<<")" <<endl<< |
|
|
"eventn["<<i<<"]= "<<te->eventn[i]<<"!= eventn["<<i+1<<"]= "<< te->eventn[i+1]<<endl; |
|
|
} |
|
|
else |
|
|
eventint[(ev-minev)]=te->eventn[0]; |
|
|
} |
|
794 |
} |
} |
795 |
|
eventint[(ev-minev)]=te->eventn[0]; |
796 |
|
|
|
if(ev<=maxevent-1){ |
|
|
|
|
|
if((ev-minev)>=1 && eventint[(ev-minev)]!=eventint[(ev-minev)-1]+1 && eventint[(ev-minev)]!=1){ |
|
|
warning_dspnumber++; |
|
|
warning<< "==> WARNING!! Check entry "<< ev<<endl<< |
|
|
" DSP event num.= "<< eventint[(ev-minev)]<< |
|
|
" is different from (previus+1) ="<<eventint[(ev-minev)-1]+1 <<"\n"<<endl; |
|
|
} |
|
|
} |
|
|
|
|
797 |
//******************************************************************************************** |
//******************************************************************************************** |
798 |
// file ALARM |
// file DSP warning |
799 |
//******************************************************************************************** |
//******************************************************************************************** |
800 |
|
|
801 |
alarm <<endl<< "================================================="<< endl; |
if(ALARM==1) { |
802 |
alarm << "PSCU-Pkt N. "<< ph->GetCounter() ; |
al=1; |
803 |
alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl; |
alarm <<endl<< "================================================="<< endl; |
804 |
alarm << "(ROOT-tree entry "<<ev<<")"<<endl; |
alarm << "PSCU-Pkt N. "<< ph->GetCounter() ; |
805 |
alarm << "================================================="<< endl; |
alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl; |
806 |
|
alarm << "Total events "<<nevent<<endl; |
807 |
if(ALARM==1) { |
alarm << "(ROOT-tree entry "<<ev<<" in page "<<ii+1<<" )"<<endl; |
808 |
|
alarm << "================================================="<< endl; |
809 |
|
|
810 |
alarm << " DSPn"; |
alarm << " DSPn"; |
811 |
alarm << " Event"; |
alarm << " Counter"; |
812 |
|
alarm << " previous"; |
813 |
alarm << " Words"; |
alarm << " Words"; |
814 |
alarm << " crc"; |
alarm << " crc"; |
815 |
alarm << " FC"; |
alarm << " FC"; |
822 |
|
|
823 |
for(Int_t i=0; i<12 ; i++){ |
for(Int_t i=0; i<12 ; i++){ |
824 |
alarm.width(5); alarm << te->DSPnumber[i]; |
alarm.width(5); alarm << te->DSPnumber[i]; |
825 |
alarm.width(6); alarm << te->eventn[i]; |
alarm.width(8); alarm << te->eventn[i]; |
826 |
|
alarm.width(8); alarm << eventn[i]; |
827 |
alarm.width(6); alarm << te->DATAlength[i]; |
alarm.width(6); alarm << te->DATAlength[i]; |
828 |
alarm.width(4); alarm << te->crc[i]; |
alarm.width(4); alarm << te->crc[i]; |
829 |
alarm.width(4); alarm << te->fc[i]; |
alarm.width(4); alarm << te->fc[i]; |
838 |
alarm << endl; |
alarm << endl; |
839 |
} |
} |
840 |
} |
} |
841 |
|
for(Int_t i=0; i<12 ; i++) |
842 |
|
eventn[i]=te->eventn[i]; |
843 |
} |
} |
|
if(ALARM==0) alarm << endl<< "------> NO ALARM!!! <-------"<<endl; |
|
|
|
|
|
if(warning_dspnumber==0) warning<<"NONE"<<endl; |
|
844 |
} |
} |
845 |
|
if(al==0) alarm << endl<< "Page "<<ii+1<< ": ------> NO ALARM!!! <-------"<<endl; |
846 |
|
|
847 |
// printf("prova2\n"); |
// |
848 |
|
// Draw the graphs |
|
Float_t maxhist=0; |
|
|
TBox b; |
|
|
b.SetFillColor(5); |
|
|
|
|
849 |
for (Int_t i=0; i<12 ; i++){ |
for (Int_t i=0; i<12 ; i++){ |
850 |
Float_t yyc[maxev-minev]; |
Double_t yyc[maxev-minev]; |
851 |
for (Int_t v=0; v<maxev-minev; v++){ |
for (Int_t v=0; v<maxev-minev; v++){ |
852 |
yyc[v]=yc[v][i]; |
yyc[v]=yc[v][i]; |
853 |
} |
} |
|
|
|
|
printf("prova3\n"); |
|
|
LandauCanv1[ii]->cd(); |
|
|
pad1[i]->SetFillColor(10); |
|
|
pad1[i]->SetFrameFillColor(10); |
|
|
pad1[i]->Draw(); |
|
|
pad1[i]->cd(); |
|
|
landau1[i][ii]->Draw(""); |
|
|
LandauCanv2[ii]->cd(); |
|
|
pad4[i]->SetFillColor(10); |
|
|
pad4[i]->SetFrameFillColor(10); |
|
|
pad4[i]->Draw(); |
|
|
pad4[i]->cd(); |
|
|
landau2[i][ii]->Draw(""); |
|
|
LandauCanv3[ii]->cd(); |
|
|
pad5[i]->SetFillColor(10); |
|
|
pad5[i]->SetFrameFillColor(10); |
|
|
pad5[i]->Draw(); |
|
|
pad5[i]->cd(); |
|
|
landau3[i][ii]->Draw(""); |
|
|
|
|
|
printf("prova4\n"); |
|
|
IlluminaCanv[ii]->cd(); |
|
|
pad2[i]->SetFillColor(10); |
|
|
pad2[i]->SetFrameFillColor(10); |
|
|
pad2[i]->Draw(); |
|
|
pad2[i]->cd(); |
|
|
pad2[i]->SetLogy(); |
|
|
// illuminazione[i][ii]->SetStats(KFALSE); |
|
|
if(i==1){ |
|
|
illuminazione[i][ii]->Draw("ah"); |
|
|
maxhist= illuminazione[i][ii]->GetMaximum(); |
|
|
b.DrawBox(2816.,0.,3060.,maxhist); |
|
|
illuminazione[i][ii]->Draw("axis same"); |
|
|
illuminazione[i][ii]->Draw("same ]["); |
|
|
} |
|
|
else if(i==6){ |
|
|
illuminazione[i][ii]->Draw("ah"); |
|
|
maxhist= illuminazione[i][ii]->GetMaximum(); |
|
|
b.DrawBox(2560.,0.,2816.,maxhist); |
|
|
b.DrawBox(512.,0.,768.,maxhist); |
|
|
b.DrawBox(1024.,0.,1792.,maxhist); |
|
|
illuminazione[i][ii]->Draw("axis same"); |
|
|
illuminazione[i][ii]->Draw("same]["); |
|
|
} |
|
|
else if(i==11){ |
|
|
illuminazione[i][ii]->Draw("ah"); |
|
|
maxhist= illuminazione[i][ii]->GetMaximum(); |
|
|
b.DrawBox(768.,0.,1024.,maxhist); |
|
|
illuminazione[i][ii]->Draw("axis same"); |
|
|
illuminazione[i][ii]->Draw("same]["); |
|
|
} |
|
|
else illuminazione[i][ii]->Draw(""); |
|
|
|
|
|
printf("prova5\n"); |
|
|
|
|
854 |
|
|
855 |
CompTimeCanv[ii]->cd(); |
CompTimeCanv[ii]->cd(); |
856 |
pad3[i]->SetFillColor(10); |
pad3[i]->SetFillColor(10); |
864 |
comprtime[i][ii]->GetXaxis()->CenterTitle(); |
comprtime[i][ii]->GetXaxis()->CenterTitle(); |
865 |
comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)"); |
comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)"); |
866 |
comprtime[i][ii]->GetYaxis()->CenterTitle(); |
comprtime[i][ii]->GetYaxis()->CenterTitle(); |
867 |
comprtime[i][ii]->GetYaxis()->SetRangeUser(0,2); |
// comprtime[i][ii]->GetYaxis()->SetRangeUser(0,3); |
868 |
comprtime[i][ii]->Draw("ap"); |
comprtime[i][ii]->Draw("ap"); |
869 |
oss1.str(""); |
oss1.str(""); |
|
|
|
870 |
CompTimeCanv[ii]->Update(); |
CompTimeCanv[ii]->Update(); |
871 |
LandauCanv1[ii]->Update(); |
} |
|
LandauCanv2[ii]->Update(); |
|
|
LandauCanv3[ii]->Update(); |
|
|
IlluminaCanv[ii]->Update(); |
|
|
}; |
|
872 |
|
|
|
printf("prova6\n"); |
|
|
EventNumCanv[ii]->cd(); |
|
|
pt0=new TPad("pt0"," ",0.704,0.004,0.996,0.98); |
|
|
pt1 = new TPaveText(0.004,0.004,0.986,0.996); |
|
|
pt = new TPad("pt"," ",0.004,0.004,0.7,0.98,18,0,0); |
|
|
pt1->SetFillColor(10); |
|
|
pt1->ReadFile(out + "warning.txt"); |
|
|
pt1->SetTextAlign(22); |
|
|
pt1->SetTextSize(0.035); |
|
|
pt0->SetFillColor(10); |
|
|
pt0->SetFrameFillColor(10); |
|
|
pt0->Draw(); |
|
|
pt0->cd(); |
|
|
pt1->Draw(); |
|
873 |
EventNumCanv[ii]->cd(); |
EventNumCanv[ii]->cd(); |
874 |
|
pt = new TPad("pt"," ",0.02,0.01,1.,0.98,18,0,0); |
875 |
pt->SetFillColor(10); |
pt->SetFillColor(10); |
876 |
pt->SetFrameFillColor(10); |
pt->SetFrameFillColor(10); |
877 |
pt->Draw(); |
pt->Draw(); |
878 |
pt->cd(); |
pt->cd(); |
879 |
eventnumb[ii]=new TGraph(maxev-minev,x,eventint); |
eventnumb[ii]=new TGraph(maxev-minev,x,eventint); |
880 |
eventnumb[ii]->SetTitle(""); |
eventnumb[ii]->SetTitle(""); |
881 |
eventnumb[ii]->GetXaxis()->SetLabelSize(0.04); |
eventnumb[ii]->GetXaxis()->SetLabelSize(0.02); |
882 |
eventnumb[ii]->GetXaxis()->SetTitleSize(0.04); |
eventnumb[ii]->GetXaxis()->SetTitleSize(0.03); |
883 |
eventnumb[ii]->GetXaxis()->SetTitle("OBT (ms)"); |
eventnumb[ii]->GetXaxis()->SetTitle("OBT (ms)"); |
884 |
eventnumb[ii]->GetXaxis()->CenterTitle(); |
eventnumb[ii]->GetXaxis()->CenterTitle(); |
885 |
eventnumb[ii]->GetXaxis()->SetTickLength(0.01); |
eventnumb[ii]->GetXaxis()->SetTickLength(0.01); |
886 |
eventnumb[ii]->GetXaxis()->SetTitleOffset(1.2); |
eventnumb[ii]->GetXaxis()->SetTitleOffset(1.1); |
887 |
eventnumb[ii]->GetYaxis()->SetLabelSize(0.04); |
eventnumb[ii]->GetYaxis()->SetLabelSize(0.02); |
888 |
eventnumb[ii]->GetYaxis()->SetTitleSize(0.04); |
eventnumb[ii]->GetYaxis()->SetTitleSize(0.03); |
889 |
eventnumb[ii]->GetYaxis()->SetTitle("DSP event-number"); |
eventnumb[ii]->GetYaxis()->SetTitle("DSP event-number"); |
890 |
eventnumb[ii]->GetYaxis()->CenterTitle(); |
eventnumb[ii]->GetYaxis()->CenterTitle(); |
891 |
eventnumb[ii]->GetYaxis()->SetTitleOffset(1.5); |
eventnumb[ii]->GetYaxis()->SetTitleOffset(2.); |
892 |
eventnumb[ii]->SetMarkerStyle(21); |
eventnumb[ii]->SetMarkerStyle(21); |
893 |
eventnumb[ii]->SetMarkerColor(kBlue); |
eventnumb[ii]->SetMarkerColor(kBlue); |
894 |
eventnumb[ii]->SetMarkerSize(0.3); |
eventnumb[ii]->SetMarkerSize(0.2); |
895 |
eventnumb[ii]->Draw("ap"); |
eventnumb[ii]->Draw("ap"); |
896 |
EventNumCanv[ii]->Update(); |
EventNumCanv[ii]->Update(); |
|
|
|
|
printf("prova7\n"); |
|
|
|
|
|
obt=0; |
|
|
for(Int_t i=0; i<5; i++){ |
|
|
Int_t v=0; |
|
|
for (Int_t ev=countTEMP; ev<tsize; ev++){ |
|
|
tree->GetEntry(ev); |
|
|
ph=eT->GetPscuHeader(); |
|
|
|
|
|
if(ph->GetOrbitalTime()<obt && ev>countTEMP){ |
|
|
countTEMP=ev; |
|
|
break; |
|
|
} |
|
|
else{ |
|
|
obt=ph->GetOrbitalTime(); |
|
|
tempt_tmp[v++]=(Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231); |
|
|
} |
|
|
} |
|
|
TempCanv[ii]->cd(); |
|
|
tit<<"T"<<i+5<<" (magnetic module "<<i+1<<")"; |
|
|
pad6[i]->SetFillColor(10); |
|
|
pad6[i]->Draw(); |
|
|
pad6[i]->cd(); |
|
|
temp[i][ii]= new TGraph(v,xt,tempt_tmp); |
|
|
temp[i][ii]->SetTitle(tit.str().c_str()); |
|
|
temp[i][ii]->GetXaxis()->SetLabelSize(0.04); |
|
|
temp[i][ii]->GetXaxis()->SetTitleSize(0.04); |
|
|
temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)"); |
|
|
temp[i][ii]->GetXaxis()->CenterTitle(); |
|
|
temp[i][ii]->GetXaxis()->SetTitleOffset(0.85); |
|
|
temp[i][ii]->GetYaxis()->SetTitleOffset(1.2); |
|
|
temp[i][ii]->GetYaxis()->SetLabelOffset(0.001); |
|
|
temp[i][ii]->GetYaxis()->SetLabelSize(0.04); |
|
|
temp[i][ii]->GetYaxis()->SetTitleSize(0.04); |
|
|
temp[i][ii]->GetYaxis()->SetTitle("Temperatures ( ^{o}C)"); |
|
|
temp[i][ii]->GetYaxis()->CenterTitle(); |
|
|
temp[i][ii]->SetMarkerStyle(21); |
|
|
temp[i][ii]->SetMarkerSize(0.2); |
|
|
temp[i][ii]->Draw("ap"); |
|
|
tit.str(""); |
|
|
TempCanv[ii]->Update(); |
|
|
} |
|
897 |
|
|
|
printf("prova8\n"); |
|
898 |
minev=maxev; |
minev=maxev; |
|
printf("\ncountrun=%d\n",ii); |
|
899 |
if(maxev==maxevent-1) { |
if(maxev==maxevent-1) { |
900 |
countrun=ii+1; |
cntpgdat=ii+1; |
901 |
break; |
break; |
902 |
} |
} |
903 |
|
|
|
warning.close(); |
|
|
|
|
904 |
} |
} |
905 |
|
|
906 |
//***************************************** |
|
|
//close all files |
|
|
//***************************************** |
|
907 |
alarm.close(); |
alarm.close(); |
908 |
datafile->Close(); |
|
909 |
|
//**************************************************************************************** |
910 |
|
//Cluster Signal ladder1 Output Pages |
911 |
|
//**************************************************************************************** |
912 |
|
|
913 |
|
fromfile.str(""); |
914 |
|
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
915 |
|
isfile<<"Cluster Signal ladder1"; |
916 |
|
LandauCanv1=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
917 |
|
LandauCanv1->SetFillColor(10); |
918 |
|
LandauCanv1->Range(0,0,100,100); |
919 |
|
|
920 |
|
t->SetTextFont(32); |
921 |
|
t->SetTextColor(1); |
922 |
|
t->SetTextAlign(12); |
923 |
|
t->SetTextSize(0.02); |
924 |
|
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
925 |
|
t1->SetTextFont(32); |
926 |
|
t1->SetTextColor(1); |
927 |
|
t1->SetTextAlign(12); |
928 |
|
t1->SetTextSize(0.02); |
929 |
|
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
930 |
|
isfile.str(""); |
931 |
|
|
932 |
|
//**************************************************************************************** |
933 |
|
//Cluster Signal ladder2 Output Pages |
934 |
|
//**************************************************************************************** |
935 |
|
|
936 |
|
isfile<<"Cluster Signal ladder2"; |
937 |
|
LandauCanv2=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
938 |
|
LandauCanv2->SetFillColor(10); |
939 |
|
LandauCanv2->Range(0,0,100,100); |
940 |
|
|
941 |
|
t->SetTextFont(32); |
942 |
|
t->SetTextColor(1); |
943 |
|
t->SetTextAlign(12); |
944 |
|
t->SetTextSize(0.02); |
945 |
|
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
946 |
|
t1->SetTextFont(32); |
947 |
|
t1->SetTextColor(1); |
948 |
|
t1->SetTextAlign(12); |
949 |
|
t1->SetTextSize(0.02); |
950 |
|
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
951 |
|
isfile.str(""); |
952 |
|
|
953 |
|
//**************************************************************************************** |
954 |
|
//Cluster Signal ladder3 Output Pages |
955 |
|
//**************************************************************************************** |
956 |
|
|
957 |
|
isfile<<"Cluster Signal ladder3"; |
958 |
|
LandauCanv3=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
959 |
|
LandauCanv3->SetFillColor(10); |
960 |
|
LandauCanv3->Range(0,0,100,100); |
961 |
|
|
962 |
|
t->SetTextFont(32); |
963 |
|
t->SetTextColor(1); |
964 |
|
t->SetTextAlign(12); |
965 |
|
t->SetTextSize(0.02); |
966 |
|
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
967 |
|
t1->SetTextFont(32); |
968 |
|
t1->SetTextColor(1); |
969 |
|
t1->SetTextAlign(12); |
970 |
|
t1->SetTextSize(0.02); |
971 |
|
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
972 |
|
isfile.str(""); |
973 |
|
|
974 |
|
//**************************************************************************************** |
975 |
|
//Lighting of the views Output Pages |
976 |
|
//**************************************************************************************** |
977 |
|
|
978 |
|
isfile<<"lighting of the views"; |
979 |
|
IlluminaCanv=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
980 |
|
IlluminaCanv->SetFillColor(10); |
981 |
|
IlluminaCanv->Range(0,0,100,100); |
982 |
|
t->SetTextFont(32); |
983 |
|
t->SetTextColor(1); |
984 |
|
t->SetTextAlign(12); |
985 |
|
t->SetTextSize(0.02); |
986 |
|
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
987 |
|
t1->SetTextFont(32); |
988 |
|
t1->SetTextColor(1); |
989 |
|
t1->SetTextAlign(12); |
990 |
|
t1->SetTextSize(0.02); |
991 |
|
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
992 |
|
isfile.str(""); |
993 |
|
|
994 |
|
// |
995 |
|
// Draw the histos |
996 |
|
for (Int_t i=0; i<12 ; i++){ |
997 |
|
|
998 |
|
TBox b; |
999 |
|
|
1000 |
|
Float_t maxhist=0; |
1001 |
|
LandauCanv1->cd(); |
1002 |
|
pad1[i]->SetFillColor(10); |
1003 |
|
pad1[i]->SetFrameFillColor(10); |
1004 |
|
pad1[i]->Draw(); |
1005 |
|
pad1[i]->cd(); |
1006 |
|
landau1[i]->GetXaxis()->SetTitle("max signal"); |
1007 |
|
landau1[i]->GetXaxis()->CenterTitle(); |
1008 |
|
landau1[i]->Draw(""); |
1009 |
|
LandauCanv1->Update(); |
1010 |
|
|
1011 |
|
LandauCanv2->cd(); |
1012 |
|
pad4[i]->SetFillColor(10); |
1013 |
|
pad4[i]->SetFrameFillColor(10); |
1014 |
|
pad4[i]->Draw(); |
1015 |
|
pad4[i]->cd(); |
1016 |
|
landau2[i]->GetXaxis()->SetTitle("max signal"); |
1017 |
|
landau2[i]->GetXaxis()->CenterTitle(); |
1018 |
|
landau2[i]->Draw(""); |
1019 |
|
LandauCanv2->Update(); |
1020 |
|
|
1021 |
|
LandauCanv3->cd(); |
1022 |
|
pad5[i]->SetFillColor(10); |
1023 |
|
pad5[i]->SetFrameFillColor(10); |
1024 |
|
pad5[i]->Draw(); |
1025 |
|
pad5[i]->cd(); |
1026 |
|
landau3[i]->GetXaxis()->SetTitle("max signal"); |
1027 |
|
landau3[i]->GetXaxis()->CenterTitle(); |
1028 |
|
landau3[i]->Draw(""); |
1029 |
|
LandauCanv3->Update(); |
1030 |
|
|
1031 |
|
IlluminaCanv->cd(); |
1032 |
|
pad2[i]->SetFillColor(10); |
1033 |
|
pad2[i]->SetFrameFillColor(10); |
1034 |
|
pad2[i]->SetLogy(); |
1035 |
|
pad2[i]->Draw(); |
1036 |
|
pad2[i]->cd(); |
1037 |
|
illuminazione[i]->GetXaxis()->SetTitle("strip with max signal"); |
1038 |
|
illuminazione[i]->GetXaxis()->CenterTitle(); |
1039 |
|
illuminazione[i]->Draw(""); |
1040 |
|
if(i==1){ |
1041 |
|
maxhist= illuminazione[i]->GetMaximum(); |
1042 |
|
b.SetFillColor(6); |
1043 |
|
b.SetFillStyle(3945); |
1044 |
|
b.DrawBox(2944.,0.,3060.,maxhist); |
1045 |
|
|
1046 |
|
b.SetFillColor(107); |
1047 |
|
b.SetFillStyle(3954); |
1048 |
|
b.DrawBox(2816.,0.,2944.,maxhist); |
1049 |
|
b.DrawBox(2048.,0.,2176.,maxhist); |
1050 |
|
} |
1051 |
|
else if(i==4){ |
1052 |
|
maxhist=illuminazione[i]->GetMaximum(); |
1053 |
|
b.SetFillColor(107); |
1054 |
|
b.SetFillStyle(3954); |
1055 |
|
b.DrawBox(384.,0.,512.,maxhist); |
1056 |
|
} |
1057 |
|
else if(i==6){ |
1058 |
|
maxhist= illuminazione[i]->GetMaximum(); |
1059 |
|
b.SetFillColor(6); |
1060 |
|
b.SetFillStyle(3945); |
1061 |
|
b.DrawBox(2560.,0.,2816.,maxhist); |
1062 |
|
b.DrawBox(1024.,0.,1792.,maxhist); |
1063 |
|
|
1064 |
|
b.SetFillColor(107); |
1065 |
|
b.SetFillStyle(3954); |
1066 |
|
b.DrawBox(512.,0.,768.,maxhist); |
1067 |
|
} |
1068 |
|
else if(i==7){ |
1069 |
|
maxhist= illuminazione[i]->GetMaximum(); |
1070 |
|
b.SetFillColor(107); |
1071 |
|
b.SetFillStyle(3954); |
1072 |
|
b.DrawBox(512.,0.,768.,maxhist); |
1073 |
|
} |
1074 |
|
else if(i==11){ |
1075 |
|
maxhist= illuminazione[i]->GetMaximum(); |
1076 |
|
b.SetFillColor(6); |
1077 |
|
b.SetFillStyle(3945); |
1078 |
|
b.DrawBox(768.,0.,1024.,maxhist); |
1079 |
|
|
1080 |
|
b.SetFillColor(107); |
1081 |
|
b.SetFillStyle(3954); |
1082 |
|
b.DrawBox(0.,0.,512.,maxhist); |
1083 |
|
b.DrawBox(1920.,0.,2048.,maxhist); |
1084 |
|
} |
1085 |
|
IlluminaCanv->Update(); |
1086 |
|
} |
1087 |
|
|
1088 |
printf("... end of packets. \n"); |
printf("... end of packets. \n"); |
1089 |
|
|
1090 |
//************************************************************************* |
//************************************************************************* |
1091 |
// Save output Files |
// Save output Files |
1092 |
//************************************************************************* |
//************************************************************************* |
1093 |
stringstream out1,out2,out3,command; |
stringstream out1,out2,out3,command; |
1094 |
|
Int_t totpg=0; |
1095 |
for(Int_t fl=0;fl<countrun;fl++){ |
if(cntpgtemp>cntpgdat) totpg=cntpgtemp; |
1096 |
|
else if(cntpgtemp<=cntpgdat) totpg=cntpgdat; |
1097 |
|
|
1098 |
|
for(Int_t fl=0;fl<totpg;fl++){ |
1099 |
if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){ |
if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){ |
1100 |
out1.str(""); |
out1.str(""); |
1101 |
out2.str(""); |
out2.str(""); |
1105 |
out2<<ffile<<"_FTrkQLook_EXPERT.ps"; |
out2<<ffile<<"_FTrkQLook_EXPERT.ps"; |
1106 |
out3<<ffile<<"_FTrkQLook_EXPERT.ps)"; |
out3<<ffile<<"_FTrkQLook_EXPERT.ps)"; |
1107 |
|
|
1108 |
if(countrun==1){ |
if(totpg==1){ |
1109 |
CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait"); |
CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait"); |
1110 |
EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
1111 |
LandauCanv1[fl]->Print(out+out2.str().c_str(),"Portrait"); |
TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
1112 |
LandauCanv2[fl]->Print(out+out2.str().c_str(),"Portrait"); |
BfieldCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
1113 |
LandauCanv3[fl]->Print(out+out2.str().c_str(),"Portrait"); |
LandauCanv1->Print(out+out2.str().c_str(),"Portrait"); |
1114 |
IlluminaCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
LandauCanv2->Print(out+out2.str().c_str(),"Portrait"); |
1115 |
TempCanv[fl]->Print(out+out3.str().c_str(),"Portrait"); |
LandauCanv3->Print(out+out2.str().c_str(),"Portrait"); |
1116 |
|
IlluminaCanv->Print(out+out3.str().c_str(),"Portrait"); |
1117 |
} |
} |
1118 |
else if(countrun>=1){ |
else if(totpg>1){ |
1119 |
if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait"); |
if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait"); |
1120 |
else CompTimeCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
if(fl>0 && fl<cntpgdat) CompTimeCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
1121 |
EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
1122 |
LandauCanv1[fl]->Print(out+out2.str().c_str(),"Portrait"); |
if(fl<cntpgmag) BfieldCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
1123 |
LandauCanv2[fl]->Print(out+out2.str().c_str(),"Portrait"); |
if(fl<cntpgtemp) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
1124 |
LandauCanv3[fl]->Print(out+out2.str().c_str(),"Portrait"); |
if(fl==totpg-1){ |
1125 |
IlluminaCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
LandauCanv1->Print(out+out2.str().c_str(),"Portrait"); |
1126 |
if(fl!=countrun-1) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
LandauCanv2->Print(out+out2.str().c_str(),"Portrait"); |
1127 |
else TempCanv[fl]->Print(out+out3.str().c_str(),"Portrait"); |
LandauCanv3->Print(out+out2.str().c_str(),"Portrait"); |
1128 |
} |
IlluminaCanv->Print(out+out3.str().c_str(),"Portrait"); |
1129 |
|
} |
|
if(!strcmp(outfile.Data(),"pdf")){ |
|
|
stringstream com; |
|
|
com<<"ps2pdf13 "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "<<out<<ffile<<"_FTrkQLook_EXPERT.pdf"; |
|
|
system(com.str().c_str()); |
|
|
printf("\n---> ps file converted in pdf format!\n"); |
|
|
com.str(""); |
|
|
com<<"rm -f "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "; |
|
|
system(com.str().c_str()); |
|
|
printf("---> ps file removed!\n\n"); |
|
|
com.str(""); |
|
1130 |
} |
} |
1131 |
} |
} |
1132 |
else{ |
else{ |
1133 |
out1.str(""); |
out1.str(""); |
1134 |
out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data(); |
out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data(); |
1135 |
CompTimeCanv[fl]->Print(out+out1.str().c_str()); |
if(fl<cntpgdat) CompTimeCanv[fl]->Print(out+out1.str().c_str()); |
1136 |
|
out1.str(""); |
1137 |
|
out1<<ffile<<"_FTrkQLook_EXPERT-BField-pag"<<fl+1<<"."<<outfile.Data(); |
1138 |
|
if(fl<cntpgmag) BfieldCanv[fl]->Print(out+out1.str().c_str()); |
1139 |
out1.str(""); |
out1.str(""); |
1140 |
out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data(); |
out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data(); |
1141 |
TempCanv[fl]->Print(out+out1.str().c_str()); |
if(fl<cntpgtemp) TempCanv[fl]->Print(out+out1.str().c_str()); |
1142 |
out1.str(""); |
out1.str(""); |
1143 |
out1<<ffile<<"_FTrkQLook_EXPERT-EvNum-pag"<<fl+1<<"."<<outfile.Data(); |
out1<<ffile<<"_FTrkQLook_EXPERT-EvNum-pag"<<fl+1<<"."<<outfile.Data(); |
1144 |
EventNumCanv[fl]->Print(out+out1.str().c_str()); |
if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out1.str().c_str()); |
1145 |
out1.str(""); |
if(fl==totpg-1){ |
1146 |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL1-pag"<<fl+1<<"."<<outfile.Data(); |
out1.str(""); |
1147 |
LandauCanv1[fl]->Print(out+out1.str().c_str()); |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL1."<<outfile.Data(); |
1148 |
out1.str(""); |
LandauCanv1->Print(out+out1.str().c_str()); |
1149 |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL2-pag"<<fl+1<<"."<<outfile.Data(); |
out1.str(""); |
1150 |
LandauCanv2[fl]->Print(out+out1.str().c_str()); |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL2."<<outfile.Data(); |
1151 |
out1.str(""); |
LandauCanv2->Print(out+out1.str().c_str()); |
1152 |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL3-pag"<<fl+1<<"."<<outfile.Data(); |
out1.str(""); |
1153 |
LandauCanv3[fl]->Print(out+out1.str().c_str()); |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL3."<<outfile.Data(); |
1154 |
out1.str(""); |
LandauCanv3->Print(out+out1.str().c_str()); |
1155 |
out1<<ffile<<"_FTrkQLook_EXPERT-Lighting-pag"<<fl+1<<"."<<outfile.Data(); |
out1.str(""); |
1156 |
IlluminaCanv[fl]->Print(out+out1.str().c_str()); |
out1<<ffile<<"_FTrkQLook_EXPERT-Lighting."<<outfile.Data(); |
1157 |
|
IlluminaCanv->Print(out+out1.str().c_str()); |
1158 |
|
} |
1159 |
} |
} |
1160 |
|
} |
1161 |
|
|
1162 |
|
// |
1163 |
|
// Convert ps to pdf if required |
1164 |
|
if(!strcmp(outfile.Data(),"pdf")){ |
1165 |
|
stringstream com; |
1166 |
|
com<<"ps2pdf13 "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "<<out<<ffile<<"_FTrkQLook_EXPERT.pdf"; |
1167 |
|
system(com.str().c_str()); |
1168 |
|
printf("\n---> ps file converted in pdf format!\n"); |
1169 |
|
com.str(""); |
1170 |
|
com<<"rm -f "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "; |
1171 |
|
system(com.str().c_str()); |
1172 |
|
printf("---> ps file removed!\n\n"); |
1173 |
|
com.str(""); |
1174 |
} |
} |
|
command.str(""); |
|
|
command<<"rm -f "<<out<<"warning.txt"; |
|
|
system(command.str().c_str()); |
|
1175 |
|
|
1176 |
gROOT->Reset(); |
gROOT->Reset(); |
1177 |
return; |
return; |
1178 |
} |
} |