forked from hszumila/cafe_optics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set_ypfp_yfp_cuts.C
421 lines (391 loc) · 13.1 KB
/
set_ypfp_yfp_cuts.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
#include <TString.h>
#include <TLegend.h>
#include <TFile.h>
#include <TNtuple.h>
#include <TH1.h>
#include <TH2.h>
#include <TCanvas.h>
#include <TStyle.h>
#include <TROOT.h>
#include <TCutG.h>
#include <TMath.h>
#include <TProfile.h>
#include <TObjArray.h>
#include <cmath>
#include <cstdio>
#include <vector>
#include <cstdlib>
#include <iostream>
#include <math.h>
#include <iomanip>
#include <fstream>
using namespace std;
void set_ypfp_yfp_cuts(Int_t nrun=1814,Int_t FileID=-2,Double_t hist_minZ=1.) {
gROOT->Reset();
gStyle->SetOptStat(0);
gStyle->SetOptFit(11);
gStyle->SetTitleOffset(1.,"Y");
gStyle->SetTitleOffset(.7,"X");
gStyle->SetLabelSize(0.04,"XY");
gStyle->SetTitleSize(0.06,"XY");
gStyle->SetPadLeftMargin(0.14);
const Int_t Number=3;
Double_t Red[Number] = { 1.0,0.0,0.0};
Double_t Blue[Number] = { 1.0,0.0,1.0};
Double_t Green[Number] = { 0.0,1.0,0.0};
Double_t Len[Number] = { 0.0,.5,1.0};
Int_t nb=50;
TColor::CreateGradientColorTable(Number,Len,Red,Green,Blue,nb);
// Get info for that optics run
TString OpticsFile = "list_of_optics_run.dat";
ifstream file_optics(OpticsFile.Data());
TString opticsline;
TString OpticsID="";
Int_t RunNum=0.;
Double_t CentAngle=0.;
Int_t SieveFlag=1;
Int_t NumFoil=0;
TString temp;
//
vector <Double_t> ztar_foil;
Int_t ndelcut;
vector<Double_t > delcut;
vector<Double_t > delwidth;
if (file_optics.is_open()) {
//
cout << " Open file = " << OpticsFile << endl;
while (RunNum!=nrun ) {
temp.ReadToDelim(file_optics,',');
cout << temp << endl;
if (temp.Atoi() == nrun) {
RunNum = temp.Atoi();
} else {
temp.ReadLine(file_optics);
}
}
if (RunNum==nrun) {
temp.ReadToDelim(file_optics,',');
OpticsID = temp;
temp.ReadToDelim(file_optics,',');
CentAngle = temp.Atof();
temp.ReadToDelim(file_optics,',');
NumFoil = temp.Atoi();
temp.ReadToDelim(file_optics,',');
SieveFlag = temp.Atoi();
temp.ReadToDelim(file_optics);
ndelcut = temp.Atoi();
for (Int_t nf=0;nf<NumFoil-1;nf++) {
temp.ReadToDelim(file_optics,',');
ztar_foil.push_back(temp.Atof());
}
temp.ReadToDelim(file_optics);
ztar_foil.push_back(temp.Atof());
for (Int_t nd=0;nd<ndelcut-1;nd++) {
temp.ReadToDelim(file_optics,',');
delcut.push_back(temp.Atof());
}
temp.ReadToDelim(file_optics);
delcut.push_back(temp.Atof());
for (Int_t nw=0;nw<ndelcut-1;nw++) {
temp.ReadToDelim(file_optics,',');
delwidth.push_back(temp.Atof());
}
temp.ReadToDelim(file_optics);
delwidth.push_back(temp.Atof());
}
} else {
cout << " No file = " << OpticsFile << endl;
}
cout << RunNum << " " << OpticsID << " " << CentAngle << " " << NumFoil << " " << SieveFlag << endl;
if (NumFoil==0) return;
CentAngle=CentAngle*3.14159/180.;
//
TString inputroot;
TFile *fhistroot;
inputroot=Form("hist/Optics_%s_%d_hist_v2.root",OpticsID.Data(),FileID);
cout << " infile root = " << inputroot << endl;
fhistroot = new TFile(inputroot);
//
vector <Double_t> ys_cent;
for (Int_t nys=0;nys<11;nys++) {
Double_t pos=nys*1.64-1.64*5;
ys_cent.push_back(pos);
}
//
vector<vector<Double_t> > AxisRange;
AxisRange.resize(ndelcut);
TString AxisRangeFileName = Form("AxisRange_ypfp_yfp_%d.dat",nrun);
ifstream AxisRangeFile(AxisRangeFileName.Data());
for (Int_t nd=0;nd<ndelcut;nd++) { AxisRange[nd].resize(4) ;}
//
TString temp1;
if (file_optics.is_open()) {
cout << " Axis range file = " << AxisRangeFileName << endl;
for (Int_t nd=0;nd<ndelcut;nd++) {
temp1.ReadToDelim(AxisRangeFile,',');
AxisRange[nd][0] = temp1.Atof();
temp1.ReadToDelim(AxisRangeFile,',');
AxisRange[nd][1] = temp1.Atof();
temp1.ReadToDelim(AxisRangeFile,',');
AxisRange[nd][2] = temp1.Atof();
temp1.ReadToDelim(AxisRangeFile);
AxisRange[nd][3] = temp1.Atof();
}
} else {
cout << " no file = " << AxisRangeFileName << endl;
return;
}
//
//
string oldcoeffsfilename="shms-2017-26cm-monte_q1_1018_q2_1027_q3_1018_forward_global.dat";
ifstream oldcoeffsfile(oldcoeffsfilename.c_str());
vector<Double_t> xfpcoeffs;
vector<Double_t> xpfpcoeffs;
vector<Double_t> yfpcoeffs;
vector<Double_t> ypfpcoeffs;
vector<Double_t> lencoeffs;
vector<Int_t> xtarexpon;
vector<Int_t> xptarexpon;
vector<Int_t> ytarexpon;
vector<Int_t> yptarexpon;
vector<Int_t> deltaexpon;
TString currentline;
int num_recon_terms=0;
while( currentline.ReadLine(oldcoeffsfile,kFALSE) && !currentline.BeginsWith(" ----") ){
TString sc1(currentline(1,14));
TString sc2(currentline(15,14));
TString sc3(currentline(29,14));
TString sc4(currentline(43,14));
TString sc5(currentline(57,14));
xfpcoeffs.push_back(sc1.Atof());
xpfpcoeffs.push_back(sc2.Atof());
yfpcoeffs.push_back(sc3.Atof());
ypfpcoeffs.push_back(sc4.Atof());
lencoeffs.push_back(sc5.Atof());
int expontemp[6];
for(int expon=0; expon<6; expon++){
TString stemp(currentline(72+expon,1));
expontemp[expon] = stemp.Atoi();
}
xtarexpon.push_back(expontemp[0]);
xptarexpon.push_back(expontemp[1]);
ytarexpon.push_back(expontemp[2]);
yptarexpon.push_back(expontemp[3]);
deltaexpon.push_back(expontemp[5]);
cout << xfpcoeffs[num_recon_terms] << " " << xpfpcoeffs[num_recon_terms]<< " " << yfpcoeffs[num_recon_terms] << " " << ypfpcoeffs[num_recon_terms]<< " " << xtarexpon[num_recon_terms] << xptarexpon[num_recon_terms] << ytarexpon[num_recon_terms] << yptarexpon[num_recon_terms]<< expontemp[4]<< deltaexpon[num_recon_terms] << endl;
num_recon_terms++;
}
//
vector <vector<TH2F*> > hYpFpYFp_DelCut;
vector<TH2F*> temp2d;
TH2F* th;
for (Int_t nc=0;nc<NumFoil;nc++) {
for (Int_t nd=0;nd<ndelcut;nd++) {
th = (TH2F*)fhistroot->Get(Form("hYpFpYFp_%d_DelCut_%d",nc,nd));
if (!th) {
cout << " no hist : "<< Form("hYpFpYFp_%d_DelCut_%d",nc,nd) << endl;
return;
}
temp2d.push_back(th);
}
hYpFpYFp_DelCut.push_back(temp2d);
temp2d.clear();
}
TString hname_cut;
hname_cut= Form("hYpFpYFp_cut");
//Set Name of ROOTfile containing polygon Cuts
TString outCutFile;
outCutFile=Form("cuts/YpFpYFp_%s_%d_cut.root",OpticsID.Data(),FileID);
//------------------ Flag 1 ----> Set the Polygon Cut ----------------------
TCanvas *histView_Cut;
histView_Cut= new TCanvas("histView_Cut","cut",900,500);
histView_Cut->Divide(1,1);
//Loop over focal plane variables
histView_Cut->cd(1);
gPad->SetGridx();
gPad->SetGridy();
gPad->SetLogz();
cout << "outCutFile = " << outCutFile << endl;
TFile fcut(outCutFile,"UPDATE");
TCutG*t;
Double_t xtar=0,xptar=0;
vector<vector<vector<Double_t> > > vyfp;
vector<vector<vector<Double_t> > > vypfp;
vector<vector<vector<TLine*> > > vline;
vyfp.resize(11);
vypfp.resize(11);
vline.resize(11);
for (Int_t nd=0;nd<11;nd++) {
vyfp[nd].resize(11);
vypfp[nd].resize(11);
vline[nd].resize(11);
for (Int_t nf=0;nf<ndelcut;nf++) {
vyfp[nd][nf].resize(NumFoil);
vypfp[nd][nf].resize(NumFoil);
vline[nd][nf].resize(NumFoil);
}
}
Double_t zdis_sieve = 253.;
Double_t zdis_hbmagexit_coll=40.;
Double_t hb_delta_yptar_coeff = 0.019+zdis_hbmagexit_coll*0.00052;
Double_t ytar,yptar;
Double_t yfpfirst,ypfpfirst;
for (Int_t nyscol=0;nyscol<11;nyscol++) {
for (Int_t nd=0;nd<ndelcut;nd++) {
for (Int_t nf=0;nf<NumFoil;nf++) {
Double_t DelCent = delcut[nd];//(delcut[nd+1]+delcut[nd])/2;
yptar = (ys_cent[nyscol]+hb_delta_yptar_coeff*DelCent+ztar_foil[nf]*TMath::Sin(CentAngle))/(zdis_sieve-ztar_foil[nf]*TMath::Cos(CentAngle));
ytar = -ztar_foil[nf]*(TMath::Sin(CentAngle)+yptar*TMath::Cos(CentAngle));
yfpfirst = -1.89*ytar-0.16*yptar-0.09*DelCent;
ypfpfirst = (-3.0*ytar-0.77*yptar+0.13*DelCent)/1000.;
// cout << " nf = " << nf << " nd = " << nd << " ytar = " << " yptar = " << yptar << " " << ys_cent[nyscol] << " yfp = " << yfpfirst<< " ypfp = " << ypfpfirst<< endl;
//
Double_t yfp = 0.0,ypfp=0.0,xpfp=0.0,xfp=0.0;
Double_t yfplo = 0.0,ypfplo=0.0;
Double_t yfphi = 0.0,ypfphi=0.0;
Double_t etemp;
for( int icoeffold=0; icoeffold<num_recon_terms; icoeffold++ ){
etemp=
pow( xtar, xtarexpon[icoeffold] ) *
pow( xptar, xptarexpon[icoeffold] ) *
pow( ytar, ytarexpon[icoeffold] ) *
pow( yptar*1000, yptarexpon[icoeffold] ) *
pow( DelCent, deltaexpon[icoeffold] );
xfp += xfpcoeffs[icoeffold] * etemp;
xpfp += xpfpcoeffs[icoeffold] * etemp;
yfp += yfpcoeffs[icoeffold] * etemp;
ypfp += ypfpcoeffs[icoeffold] * etemp;
etemp=
pow( xtar, xtarexpon[icoeffold] ) *
pow( xptar, xptarexpon[icoeffold] ) *
pow( ytar, ytarexpon[icoeffold] ) *
pow( yptar*1000, yptarexpon[icoeffold] ) *
pow(delcut[nd] , deltaexpon[icoeffold] );
yfplo += yfpcoeffs[icoeffold] * etemp;
ypfplo += ypfpcoeffs[icoeffold] *etemp;
etemp=
pow( xtar, xtarexpon[icoeffold] ) *
pow( xptar, xptarexpon[icoeffold] ) *
pow( ytar, ytarexpon[icoeffold] ) *
pow( yptar*1000, yptarexpon[icoeffold] ) *
pow(delcut[nd+1] , deltaexpon[icoeffold] );
yfphi += yfpcoeffs[icoeffold] * etemp;
ypfphi += ypfpcoeffs[icoeffold] *etemp;
} // for icoeffold loop
vyfp[nyscol][nd][nf]= yfp;
vypfp[nyscol][nd][nf] = ypfp;
vline[nyscol][nd][nf]= new TLine(ypfplo/1000.,yfplo,ypfphi/1000.,yfphi);
vline[nyscol][nd][nf]->SetLineColor(2);
vline[nyscol][nd][nf]->SetLineWidth(2);
// cout << " full matrix yfp = " << vyfp[nyscol][nd][nf]<< " ypfp = " << vypfp[nyscol][nd][nf] << endl;
//
}}}
//
Int_t yscol=0;
yscol=0;
Int_t nd=0;
Int_t nf=0;
Int_t nloop=0;
while( nd!=-1 ) {
cout << " Which ndelta region (nd=-1 to quit)? " << " nd = " << nd << endl;
cin >> nd;
if (nd >=ndelcut) nd=0;
if (nd !=-1)cout << " Which foil ? " << " nf = " << nf<< endl;
if (nd !=-1)cin >> nf;
if (nf >=NumFoil)nf=0;
Double_t DelCent = delcut[nd];//(delcut[nd+1]+delcut[nd])/2;
nloop=-1;
if (nd !=-1) nloop=0;
while (nloop !=-1 ) {
fhistroot->cd();
hYpFpYFp_DelCut[nf][nd]->Draw("colz");
hYpFpYFp_DelCut[nf][nd]->SetMinimum(hist_minZ);
//hYpFpYFp_DelCut[nf][nd]->GetYaxis()->SetRangeUser(AxisRange[nd][0],AxisRange[nd][1]);
//hYpFpYFp_DelCut[nf][nd]->GetXaxis()->SetRangeUser(AxisRange[nd][2],AxisRange[nd][3]);
histView_Cut->Update();
for (Int_t nys=0;nys<11;nys++) {
//vline[nys][nd][nf]->Draw("same");
//TText* ystext = new TText(vypfp[nys][nd][nf]/1000.,AxisRange[nd][1],Form("P%d",nys));
//ystext->SetTextColor(2);
//ystext->Draw();
}
histView_Cut->Update();
fcut.cd();
for (Int_t nys=0;nys<11;nys++) {
hname_cut= Form("hYpFpYFp_cut_yscol_%d_nfoil_%d_ndel_%d;1",nys,nf,nd);
t=(TCutG*)gROOT->FindObject(hname_cut);
// if(!t){cout << "No cut = " <<hname_cut << endl;}
if(t) {
//cout << " draw cut = " <<hname_cut<< endl;
fcut.cd();
t->Draw("same");
t->SetLineColor(1);
//t->Print();
Double_t xcut,ycut;
t->GetPoint(0,xcut,ycut);
TText* ystext = new TText(xcut,ycut,Form("%d",nys));
ystext->Draw();
histView_Cut->Update();
}
}
cout <<" Action ( 0 ( set cut) , -1 (pick next nd and foil), -10 delete cut) " << endl;
cin >> nloop ;
if (nloop == -100) return;
if (!(nloop == -10 || nloop==0 || nloop==-1 || nloop==-100)) continue;//return;
if (nloop==-10 || nloop ==0) {
cout << " Which ysieve hole ? " << " yscol = " << yscol << endl;
cin >> yscol;
if (yscol >=11)yscol=0;
hname_cut= Form("hYpFpYFp_cut_yscol_%d_nfoil_%d_ndel_%d;1",yscol,nf,nd);
}
if(nloop==-10) {
fcut.cd();
fcut.Delete(hname_cut);
t=(TCutG*)gROOT->FindObject(hname_cut);
gROOT->Remove(t);
t=(TCutG*)gROOT->FindObject(hname_cut);
if (!t) cout << " delete cut = " <<hname_cut << endl;
if (t) cout << " delete cut? = " <<hname_cut << endl;
fcut.Write("",TObject::kOverwrite);
cout << " delete cut = " <<hname_cut << endl;
}
if (nloop==0) {
t=(TCutG*)gROOT->FindObject(hname_cut);
if (t) {
fcut.cd();
fcut.Delete(hname_cut);
hname_cut= Form("hYpFpYFp_cut_yscol_%d_nfoil_%d_ndel_%d",yscol,nf,nd);
t=(TCutG*)gROOT->FindObject(hname_cut);
gROOT->Remove(t);
}
Double_t minx=0;
Double_t miny=0;
Double_t maxx=0;
Double_t maxy=0;
Int_t ans=-1;
//cout << " Change the axis? ( -1=NO)"<< endl;
//cin >> ans;
if (ans!=-1) {
cout << " What is the X min ? "<< endl;
cin >> minx;
cout << " What is the X max ? "<< endl;
cin >> maxx;
cout << " What is the Y min ? "<< endl;
cin >> miny;
cout << " What is the Y max ? "<< endl;
cin >> maxy;
}
TCutG*cutg=(TCutG*)gPad->WaitPrimitive("CUTG","CutG");
histView_Cut->Update();
TCutG*tmpg= (TCutG*)gROOT->GetListOfSpecials()->FindObject("CUTG");
hname_cut= Form("hYpFpYFp_cut_yscol_%d_nfoil_%d_ndel_%d",yscol,nf,nd);
TCutG*mycutg=(TCutG*)(tmpg->Clone(hname_cut));
fcut.cd();
mycutg->Write("",TObject::kOverwrite);
//mycutg->Print();
// mycutg->Draw();
//histView_Cut->Update();
}
}
}
}