forked from JeffersonLab/EVe_HallC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EVe.cxx
1169 lines (884 loc) · 42.4 KB
/
EVe.cxx
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//*************************************************************************
// EVe.cxx - 4/14/2008
//
// by miham
//
// This is the main class of the event display.
//
// Updated by Ben Davis-Purcell - 8/26/14
//
//*************************************************************************
// FIXME: FULL tracks are not working yet properly because
// precise positions of the target, chambers etc. are unknown
#include "EVe.h"
#include "TMath.h"
#include <cstring>
#include <cstdio>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <TApplication.h>
#include <TROOT.h>
#include <map>
#include <string>
#include <vector>
#define DEBUG_LEVEL 0
using namespace std;
EVe::EVe(const TGWindow *p, UInt_t w, UInt_t h)
{
// main frame
//fMainFrame = new TGMainFrame(0,10,10,kMainFrame | kVerticalFrame);
fMainFrame = new TGMainFrame(p, w, h, kMainFrame | kVerticalFrame);
fMainFrame->SetLayoutBroken(kTRUE);
fMainFrame->SetWindowName("Event ViewEr - EVE");
fMainFrame->Connect("CloseWindow()", "EVe", this, "MyCloseWindow()");
// embedded canvas
fRootEmbeddedCanvas = new TRootEmbeddedCanvas(0,fMainFrame,h-16, h-16);
Int_t wfRootEmbeddedCanvas = fRootEmbeddedCanvas->GetCanvasWindowId();
c1 = new TCanvas("c1", 10, 10, wfRootEmbeddedCanvas);
c2 = new TCanvas("c2", 10, 10, wfRootEmbeddedCanvas);
c3 = new TCanvas("c3", 10, 10, wfRootEmbeddedCanvas);
c4 = new TCanvas("c4", 10, 10, wfRootEmbeddedCanvas);
c5 = new TCanvas("c5", 10, 10, wfRootEmbeddedCanvas);
fMainFrame->AddFrame(fRootEmbeddedCanvas, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fRootEmbeddedCanvas->MoveResize(8,8,h-16,h-16);
//______________ First group of buttons____________________
TGButtonGroup *fGroupFrame3 = new TGButtonGroup(fMainFrame,"View type:", kVerticalFrame);
fGroupFrame3->SetLayoutBroken(kTRUE);
fGroupFrame3->SetLayoutManager(new TGVerticalLayout(fGroupFrame3));
fGroupFrame3->Resize(128,100);
fTextButtonWires = new TGRadioButton(fGroupFrame3,"Planar view");
fGroupFrame3->AddFrame(fTextButtonWires, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonWires->MoveResize(8,24,106,20);
fTextButton3dView = new TGRadioButton(fGroupFrame3,"3D View");
fGroupFrame3->AddFrame(fTextButton3dView, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButton3dView->MoveResize(8,40,106,20);
fTextButtonProj = new TGRadioButton(fGroupFrame3,"Projection view");
fGroupFrame3->AddFrame(fTextButtonProj, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonProj->MoveResize(8,56,106,20);
fTextButtonWires->SetState(kButtonDown);
//fTextButtonProj->SetState(kButtonDown);
//fTextButton3dView->SetState(kButtonDown);
fMainFrame->AddFrame(fGroupFrame3, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fGroupFrame3->MoveResize(w-16-128-128, 100,128,100);
//______________ Second group of buttons____________________
// Here are ratio buttons for selecting MWDC
TGButtonGroup *fGroupFrame1 = new TGButtonGroup(fMainFrame,"Projections:", kVerticalFrame);
fGroupFrame1->SetLayoutBroken(kTRUE);
fTextButtonXPlane = new TGRadioButton(fGroupFrame1,"X-Projection");
fGroupFrame1->AddFrame(fTextButtonXPlane, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonXPlane->MoveResize(8,24,106,20);
fTextButtonUVPlane = new TGRadioButton(fGroupFrame1,"UV-Projection");
fGroupFrame1->AddFrame(fTextButtonUVPlane, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonUVPlane->MoveResize(8,40,106,20);
fTextButtonYPlane = new TGRadioButton(fGroupFrame1,"Y-Projection");
fGroupFrame1->AddFrame(fTextButtonYPlane, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonYPlane->MoveResize(8,56,106,20);
// In the beginning the first button is down
fTextButtonXPlane->SetState(kButtonDown);
fGroupFrame1->SetLayoutManager(new TGVerticalLayout(fGroupFrame1));
fGroupFrame1->Resize(128,120);
fMainFrame->AddFrame(fGroupFrame1, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fGroupFrame1->MoveResize(w-8-128, 100,128, 100);
//______________ Third group of buttons____________________
// Here are check buttons for options
TGButtonGroup *fGroupFrame2 = new TGButtonGroup(fMainFrame,"Options", kVerticalFrame);
fGroupFrame2->SetLayoutBroken(kTRUE);
// fTextButtonRoads = new TGCheckButton(fGroupFrame2,"Show Roads");
//fGroupFrame2->AddFrame(fTextButtonRoads, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
//fTextButtonRoads->MoveResize(8,24,106,20);
//fTextButtonRoads->SetState(kButtonDown);
fTextButtonTrackProj = new TGCheckButton(fGroupFrame2,"Tr. Projections");
fGroupFrame2->AddFrame(fTextButtonTrackProj, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonTrackProj->MoveResize(8,40,106,20);
fTextButtonTrackProj->SetState(kButtonDown);
fTextButtonTrack = new TGCheckButton(fGroupFrame2,"Show Tracks");
fGroupFrame2->AddFrame(fTextButtonTrack, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonTrack->MoveResize(8,56,106,20);
fTextButtonTrack->SetState(kButtonDown);
fGroupFrame2->SetLayoutManager(new TGVerticalLayout(fGroupFrame2));
fGroupFrame2->Resize(128,96);
fMainFrame->AddFrame(fGroupFrame2, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fGroupFrame2->MoveResize(w-8-192,200,128,96);
//________________________ Buttons___________________________________
fNumberEntry1 = new TGNumberEntry(fMainFrame, (Double_t) 0,8,-1,(TGNumberFormat::EStyle) 5);
fMainFrame->AddFrame(fNumberEntry1, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
//fNumberEntry1->MoveResize(150,380+246,72,22);
fNumberEntry1->MoveResize(w - 260, 350,100,30);
TGTextButton *fTextButtonSE = new TGTextButton(fMainFrame,"Show this Event");
fMainFrame->AddFrame(fTextButtonSE, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
//fTextButtonSE->MoveResize(230,380+246,100,30);
fTextButtonSE->MoveResize(w-150, 350,100,30);
TGTextButton *fTextButtonNext = new TGTextButton(fMainFrame,"Next");
fMainFrame->AddFrame(fTextButtonNext, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
//fTextButtonNext->MoveResize(630,380+246,104,30);
fTextButtonNext->MoveResize(w-150, 390,100,30);
TGTextButton *fTextButtonPrevious = new TGTextButton(fMainFrame,"Previous");
fMainFrame->AddFrame(fTextButtonPrevious, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
//fTextButtonPrevious->MoveResize(520,380+246,100,30);
fTextButtonPrevious->MoveResize(w -260, 390 ,100,30);
TGTextButton *fTextButtonNextGood = new TGTextButton(fMainFrame,"Next Good");
fMainFrame->AddFrame(fTextButtonNextGood, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
//fTextButtonNextGood->MoveResize(745,380+246,100,30);
fTextButtonNextGood->MoveResize(w - 150, 430, 100,30);
TGTextButton *fTextButtonPreviousGood = new TGTextButton(fMainFrame,"Previous Good");
fMainFrame->AddFrame(fTextButtonPreviousGood, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
//fTextButtonPreviousGood->MoveResize(380,380+246,130,30);
fTextButtonPreviousGood->MoveResize(w - 260, 430, 100,30);
TGTextButton *fTextButtonExit = new TGTextButton(fMainFrame,"E&xit","gApplication->Terminate(0)");
fMainFrame->AddFrame(fTextButtonExit, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonExit->MoveResize(w-150, h-50,100,30);
TGTextButton *fTextButtonPrint = new TGTextButton(fMainFrame,"&Print");
fMainFrame->AddFrame(fTextButtonPrint, new TGLayoutHints(kLHintsLeft | kLHintsTop,2,2,2,2));
fTextButtonPrint->MoveResize(w-260, h-50,100,30);
fMainFrame->MapSubwindows();
fMainFrame->Resize(fMainFrame->GetDefaultSize());
fMainFrame->MapWindow();
//fMainFrame->Resize(1000,678);
fMainFrame->Resize(w,h);
EventNumber = 0;
cst = new CStransform(2.2, 0.5, 0.3);
for (int q = 0; q<MAX_ROADS_NUM; q++) utr[q] = new Track(cst);
for (int q = 0; q<MAX_ROADS_NUM; q++) vtr[q] = new Track(cst);
for (int q = 0; q<MAX_ROADS_NUM; q++) xtr[q] = new Track(cst);
fTextButtonNext->Connect("Clicked()", "EVe", this, "doNext()");
fTextButtonPrevious->Connect("Clicked()", "EVe", this, "doPrevious()");
fTextButtonSE->Connect("Clicked()", "EVe", this, "doThis()");
fTextButtonNextGood->Connect("Clicked()", "EVe", this, "doNextGood()");
fTextButtonPreviousGood->Connect("Clicked()", "EVe", this, "doPreviousGood()");
fTextButtonPrint->Connect("Clicked()", "EVe", this, "PrintToFile()");
if (fTextButtonProj->IsOn()) {
if (fTextButtonXPlane->IsOn()) CreateXprojection();
if (fTextButtonUVPlane->IsOn()) CreateUVprojection();
if (fTextButtonYPlane->IsOn()) CreateYprojection();
if (fTextButton3dView->IsOn()) Create3DView();
}
if (fTextButtonWires->IsOn()) CreateWires();
if (fTextButton3dView->IsOn()) Create3DView();
fTextButtonXPlane->Connect("Clicked()", "EVe", this, "CreateXprojection()");
fTextButtonUVPlane->Connect("Clicked()", "EVe", this, "CreateUVprojection()");
fTextButtonYPlane->Connect("Clicked()", "EVe", this, "CreateYprojection()");
fTextButtonWires->Connect("Clicked()", "EVe", this, "CreateWires()");
fTextButton3dView->Connect("Clicked()", "EVe", this, "Create3DView()");
fTextButtonProj->Connect("Clicked()", "EVe", this, "SelectProj()");
cout<<"EVe created!!!"<<endl;
}
EVe::~EVe()
{
fMainFrame->Cleanup();
delete fMainFrame;
}
void EVe::MyCloseWindow()
{
fMainFrame->SendCloseMessage();
gApplication->Terminate();
}
void EVe::Create3DView()
{
fRootEmbeddedCanvas->AdoptCanvas(c5);
c5->cd();
c5->Clear();
detector = new Detector3D();
c5->Update();
}
void EVe::SelectProj()
{
if (fTextButtonXPlane->IsOn()) CreateXprojection();
if (fTextButtonUVPlane->IsOn()) CreateUVprojection();
if (fTextButtonYPlane->IsOn()) CreateYprojection();
if (fTextButton3dView->IsOn()) Create3DView();
}
void EVe::CreateXprojection()
{
if (fTextButtonProj->IsOn()) {
fRootEmbeddedCanvas->AdoptCanvas(c1);
c1->cd();
c1->Clear();
GetVariables *HMSvar = new GetVariables("HMS.txt");
x1 = new WirePlane((char*)"X1",HMSvar->GetDouble("MWDC1.x.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("x1.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height =")),1.0,1.0,-1);
x1p = new WirePlane((char*)"X1p",HMSvar->GetDouble("MWDC1.xp.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("x1p.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height =")),1.0,1.0,+1);
x2 = new WirePlane((char*)"X2",HMSvar->GetDouble("MWDC2.x.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("x2.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height =")),1.0,1.0,-1);
x2p = new WirePlane((char*)"X2p",HMSvar->GetDouble("MWDC2.xp.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("x2p.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height =")),1.0,1.0,+1);
c1->Update();
}
}
void EVe::CreateUVprojection()
{
if (fTextButtonProj->IsOn()) {
fRootEmbeddedCanvas->AdoptCanvas(c2);
c2->cd();
c2->Clear();
GetVariables *HMSvar = new GetVariables("HMS.txt");
u1 = new WirePlane((char*)"U1",HMSvar->GetDouble("MWDC1.u.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("u1.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height =")),1.0,1.0,-1);
v1 = new WirePlane((char*)"V1",HMSvar->GetDouble("MWDC1.v.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("v1.dist =")+0.002),
cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height =")),1.0,1.0,+1);
u2 = new WirePlane((char*)"U2",HMSvar->GetDouble("MWDC2.u.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("u2.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height =")),1.0,1.0,-1);
v2 = new WirePlane((char*)"V2",HMSvar->GetDouble("MWDC2.v.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("v2.dist =")+0.002),
cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height =")),1.0,1.0,+1);
c2->Update();
}
}
void EVe::CreateYprojection()
{
if (fTextButtonProj->IsOn()) {
fRootEmbeddedCanvas->AdoptCanvas(c4);
c4->cd();
c4->Clear();
GetVariables *HMSvar = new GetVariables("HMS.txt");
y1 = new WirePlane((char*)"Y1",HMSvar->GetDouble("MWDC1.y.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("y1.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height =")),1.0,1.0,-1);
y1p = new WirePlane((char*)"Y1p",HMSvar->GetDouble("MWDC1.yp.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("y1p.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC1.Height =")),1.0,1.0,1);
y2 = new WirePlane((char*)"Y2",HMSvar->GetDouble("MWDC2.y.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("y2.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height =")),1.0,1.0,-1);
y2p = new WirePlane((char*)"Y2p",HMSvar->GetDouble("MWDC2.yp.NumWires ="),
-0.5*cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height ="))+cst->transXtoCX(0.0),
cst->transYtoCY(HMSvar->GetDouble("y2p.dist =")),
cst->transLtoCL(HMSvar->GetDouble("MWDC2.Height =")),1.0,1.0,+1);
c4->Update();
}
}
void EVe::CreateWires()
{
fRootEmbeddedCanvas->AdoptCanvas(c3);
c3->cd();
c3->Clear();
GetVariables *vars = new GetVariables("HMS.txt");
double canvasL = vars ->GetDouble("canvasL =");
double CMWDC1X = vars ->GetDouble("canvas.MWDC1.x =");
double CMWDC1Y = vars ->GetDouble("canvas.MWDC1.y =");
double CMWDC2X = vars ->GetDouble("canvas.MWDC2.x =");
double CMWDC2Y = vars ->GetDouble("canvas.MWDC2.y =");
CStransform *mwdc1_cst = new CStransform(canvasL, CMWDC1X, CMWDC1Y);
CStransform *mwdc2_cst = new CStransform(canvasL, CMWDC2X, CMWDC2Y);
mwdc1 = new WireChamber((char*)"MWDC1", vars, mwdc1_cst);
mwdc2 = new WireChamber((char*)"MWDC2", vars, mwdc2_cst);
int NScintPlanes = vars->GetInt("Number of Scint Planes =");
double Cs1xX = vars -> GetDouble("canvas.s1x.x =");
double Cs1xY = vars -> GetDouble("canvas.s1x.y =");
double Cs1yX = vars -> GetDouble("canvas.s1y.x =");
double Cs1yY = vars -> GetDouble("canvas.s1y.y =");
double Cs2xX = vars -> GetDouble("canvas.s2x.x =");
double Cs2xY = vars -> GetDouble("canvas.s2x.y =");
double Cs2yX = vars -> GetDouble("canvas.s2y.x =");
double Cs2yY = vars -> GetDouble("canvas.s2y.y =");
double Cc1prX = vars->GetDouble("canvas.c1pr.x = ");
double Cc1prY = vars->GetDouble("canvas.c1pr.y = ");
double Cc2taX = vars->GetDouble("canvas.c2ta.x = ");
double Cc2taY = vars->GetDouble("canvas.c2ta.y = ");
double Cc3taX = vars->GetDouble("canvas.c3ta.x = ");
double Cc3taY = vars->GetDouble("canvas.c3ta.y = ");
double Cc4taX = vars->GetDouble("canvas.c4ta.x = ");
double Cc4taY = vars->GetDouble("canvas.c4ta.y = ");
//ajust scintplane position in 2D canvas
CStransform *s1x_cst = new CStransform(canvasL, Cs1xX, Cs1xY);
CStransform *s1y_cst = new CStransform(canvasL, Cs1yX, Cs1yY);
CStransform *c1pr_cst = new CStransform(canvasL, Cc1prX, Cc1prY);
CStransform *c2ta_cst = new CStransform(canvasL, Cc2taX, Cc2taY);
CStransform *c3ta_cst = new CStransform(canvasL, Cc3taX, Cc3taY);
CStransform *c4ta_cst = new CStransform(canvasL, Cc4taX, Cc4taY);
if (NScintPlanes == 4) {
s2x_cst = new CStransform(canvasL, Cs2xX, Cs2xY);
s2y_cst = new CStransform(canvasL, Cs2yX, Cs2yY);
}
s1X = new ScintPlane((char*)"s1x", vars, s1x_cst);
s1Y = new ScintPlane((char*)"s1y", vars, s1y_cst);
if (NScintPlanes == 4) {
s2X = new ScintPlane((char*)"s2x", vars, s2x_cst);
s2Y = new ScintPlane((char*)"s2y", vars, s2y_cst);
}
// HMS calorimeter
c1pr = new ScintPlane((char*)"c1pr", vars, c1pr_cst);
c2ta = new ScintPlane((char*)"c2ta", vars, c2ta_cst);
c3ta = new ScintPlane((char*)"c3ta", vars, c3ta_cst);
c4ta = new ScintPlane((char*)"c4ta", vars, c4ta_cst);
// In the end we plot a coordinate system
TArrow *xaxis = new TArrow(0.02, 0.02, 0.12, 0.02, 0.02, "|>");
xaxis->Draw();
TArrow *yaxis = new TArrow(0.02, 0.02, 0.02, 0.12, 0.02, "|>");
yaxis->Draw();
TLatex *xtext = new TLatex(0.14, 0.02, "x");
xtext->SetTextSize(0.03);
xtext->Draw();
TLatex *ytext = new TLatex(0.02, 0.14, "y");
ytext->SetTextSize(0.03);
ytext->Draw();
c3->Update();
}
/*
void EVe::SetBranchAddress(TTree* T, const char* bname, Double_t** addr, int size)
{
//Double_t *tmp = (Double_t*) malloc(size*sizeof(Double_t)); (unsigned int)
Double_t *tmp = (Double_t*) malloc(size*sizeof(Double_t));
if( tmp == NULL ) {
cerr << Form("-!-> (%s:%d) Can't allocate memory for bname '%s'",
__FILE__, __LINE__, bname) << endl;
exit(1);
} else {
//ver 1 , uninitialized numbers
T->SetBranchAddress( bname, &tmp);
*addr = tmp;
//ver2 , after hit still get 0 for all numbers, negtive index, no red or green shown
//for (int i=0; i<size ;i++)
// tmp[i]=0;
//T->SetBranchAddress( bname, &tmp);
// *addr = tmp;
//ver3 ,same as ver2
//for (int i=0; i<size ;i++)
// tmp[i]=0;
// *addr = tmp;
//T->SetBranchAddress( bname, &tmp);
//ver4 ,same as ver2 before call hitfunc, show event seg fault
//for (int i=0; i<size ;i++)
// tmp[i]=0;
//T->SetBranchAddress( bname, &tmp);
//addr = &tmp;
//ver5, unsigned int to int, other use ver2, same as ver2
//for (int i=0; i<size ;i++)
// tmp[i]=0;
//T->SetBranchAddress( bname, &tmp);
// *addr = tmp;
}
//cerr << " Size of the scintarray is " << size << " , and size of *tmp is " << sizeof(*tmp) << " , and size of *addr is " << sizeof(*addr) << endl;
for (int i=0; i<size ; i++)
cerr << "Value for "<< bname << " " << i << "th number of addr is " << (*addr)[i] << endl;
// cerr << "Now the " << bname << " has " << (double) (*addr) << " hitted." << endl ;
}
*/
void EVe::initRun(char *filename)
{
cout << "Reading file " << endl;
TFile *f1 = new TFile(filename, "r");
t1 = (TTree*) f1->Get("T");
TotalNumberOfEvents = t1->GetEntries();
THaRun* runinfo = (THaRun*)gROOT->FindObject("Run_Data");
if(runinfo==NULL) run_number = 0;
else run_number = runinfo->GetNumber();
cout<<"RUN #: "<<run_number<<endl;
#if DEBUG_LEVEL >= 3
cout<<"Number of Entries is: "<<TotalNumberOfEvents<<endl;
#endif
/// Branch Addresses for all root Tree leaves that are needed
/// Wire Chamber Nhits
t1->SetBranchAddress( "Ndata.H.dc.1u1.wirenum", &Ndata_H_dc_1u1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.1v1.wirenum", &Ndata_H_dc_1v1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.2u1.wirenum", &Ndata_H_dc_2u1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.2v1.wirenum", &Ndata_H_dc_2v1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.1x1.wirenum", &Ndata_H_dc_1x1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.1x2.wirenum", &Ndata_H_dc_1x2_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.2x1.wirenum", &Ndata_H_dc_2x1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.2x2.wirenum", &Ndata_H_dc_2x2_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.1y1.wirenum", &Ndata_H_dc_1y1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.1y2.wirenum", &Ndata_H_dc_1y2_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.2y1.wirenum", &Ndata_H_dc_2y1_tdchits);
t1->SetBranchAddress( "Ndata.H.dc.2y2.wirenum", &Ndata_H_dc_2y2_tdchits);
/// UV Wire plane hits and hit times
t1->SetBranchAddress( "H.dc.1u1.wirenum", &H_dc_1u1_tdchits);
t1->SetBranchAddress( "H.dc.1v1.wirenum", &H_dc_1v1_tdchits);
t1->SetBranchAddress( "H.dc.2u1.wirenum", &H_dc_2u1_tdchits);
t1->SetBranchAddress( "H.dc.2v1.wirenum", &H_dc_2v1_tdchits);
t1->SetBranchAddress( "H.dc.1u1.time", &H_dc_1u1_time);
t1->SetBranchAddress( "H.dc.1v1.time", &H_dc_1v1_time);
t1->SetBranchAddress( "H.dc.2u1.time", &H_dc_2u1_time);
t1->SetBranchAddress( "H.dc.2v1.time", &H_dc_2v1_time);
/// X Wire plane hits and hit times
t1->SetBranchAddress( "H.dc.1x1.wirenum", &H_dc_1x1_tdchits);
t1->SetBranchAddress( "H.dc.1x2.wirenum", &H_dc_1x2_tdchits);
t1->SetBranchAddress( "H.dc.2x1.wirenum", &H_dc_2x1_tdchits);
t1->SetBranchAddress( "H.dc.2x2.wirenum", &H_dc_2x2_tdchits);
t1->SetBranchAddress( "H.dc.1x1.time", &H_dc_1x1_time);
t1->SetBranchAddress( "H.dc.1x2.time", &H_dc_1x2_time);
t1->SetBranchAddress( "H.dc.2x1.time", &H_dc_2x1_time);
t1->SetBranchAddress( "H.dc.2x2.time", &H_dc_2x2_time);
/// Y Wire plane hits and hit times
t1->SetBranchAddress( "H.dc.1y1.wirenum", &H_dc_1y1_tdchits);
t1->SetBranchAddress( "H.dc.1y2.wirenum", &H_dc_1y2_tdchits);
t1->SetBranchAddress( "H.dc.2y1.wirenum", &H_dc_2y1_tdchits);
t1->SetBranchAddress( "H.dc.2y2.wirenum", &H_dc_2y2_tdchits);
t1->SetBranchAddress( "H.dc.1y1.time", &H_dc_1y1_time);
t1->SetBranchAddress( "H.dc.1y2.time", &H_dc_1y2_time);
t1->SetBranchAddress( "H.dc.2y1.time", &H_dc_2y1_time);
t1->SetBranchAddress( "H.dc.2y2.time", &H_dc_2y2_time);
/// TRACKS
t1->SetBranchAddress( "Ndata.H.tr.x", &Ndata_H_tr_x);
t1->SetBranchAddress( "H.tr.x", &H_tr_x);
t1->SetBranchAddress( "H.tr.y", &H_tr_y);
t1->SetBranchAddress( "H.tr.ph", &H_tr_ph);
t1->SetBranchAddress( "H.tr.th", &H_tr_th);
/// Scint Planes
/// TDC hits for all planes -- pos = left PMT, neg = right PMT
//GetVariables* HMS = new GetVariables("HMS.txt");
/// S1X
t1->SetBranchAddress( "Ndata.H.hod.1x.negtdcpad", &Ndata_H_hod_1x_negtdchits);
t1->SetBranchAddress( "Ndata.H.hod.1x.postdcpad", &Ndata_H_hod_1x_postdchits);
t1->SetBranchAddress( "H.hod.1x.negtdcpad", &H_hod_1x_negtdchits);
t1->SetBranchAddress( "H.hod.1x.postdcpad", &H_hod_1x_postdchits);
//SetBranchAddress(t1, (const char*)"H.hod.1x.negtdcpad",&H_hod_1x_negtdchits,HMS->GetInt("s1x.PN ="));
//SetBranchAddress(t1, (const char*)"H.hod.1x.postdcpad",&H_hod_1x_postdchits,HMS->GetInt("s1x.PN ="));
for(int i=0; i<Ndata_H_hod_1x_negtdchits; i++)
cerr << "After Call the number of " << i << "th of 1xnegtdchits is " << (Double_t)(H_hod_1x_negtdchits[i]) << endl;
for(int i=0; i<Ndata_H_hod_1x_postdchits; i++)
cerr << "After Call the number of " << i << "th of 1xpostdchits is " << (Double_t)(H_hod_1x_postdchits[i]) << endl;
///S1Y
t1->SetBranchAddress( "Ndata.H.hod.1y.negtdcpad", &Ndata_H_hod_1y_negtdchits);
t1->SetBranchAddress( "Ndata.H.hod.1y.postdcpad", &Ndata_H_hod_1y_postdchits);
t1->SetBranchAddress( "H.hod.1y.negtdcpad", &H_hod_1y_negtdchits);
t1->SetBranchAddress( "H.hod.1y.postdcpad", &H_hod_1y_postdchits);
//SetBranchAddress(t1, (const char*)"H.hod.1y.negtdcpad",&H_hod_1y_negtdchits,HMS->GetInt("s1y.PN ="));
//SetBranchAddress(t1, (const char*)"H.hod.1y.postdcpad",&H_hod_1y_postdchits,HMS->GetInt("s1y.PN ="));
/* for(int i=0;i<16; i++)
cerr << "After Call the number of " << i << "th of 1ynegtdchits is " << H_hod_1y_negtdchits[i] << endl;
for(int i=0;i<16; i++)
cerr << "After Call the number of " << i << "th of 1ypostdchits is " << H_hod_1y_postdchits[i] << endl;
*/
///S2X
t1->SetBranchAddress( "Ndata.H.hod.2x.negtdcpad", &Ndata_H_hod_2x_negtdchits);
t1->SetBranchAddress( "Ndata.H.hod.2x.postdcpad", &Ndata_H_hod_2x_postdchits);
t1->SetBranchAddress( "H.hod.2x.negtdcpad", &H_hod_2x_negtdchits);
t1->SetBranchAddress( "H.hod.2x.postdcpad", &H_hod_2x_postdchits);
//SetBranchAddress(t1, (const char*)"H.hod.2x.negtdcpad",&H_hod_2x_negtdchits,HMS->GetInt("s2x.PN ="));
//SetBranchAddress(t1, (const char*)"H.hod.2x.postdcpad",&H_hod_2x_postdchits,HMS->GetInt("s2x.PN ="));
/*
for(int i=0;i<16; i++)
cerr << "After Call the number of " << i << "th of 2xnegtdchits is " << H_hod_2x_negtdchits[i] << endl;
for(int i=0;i<16; i++)
cerr << "After Call the number of " << i << "th of 2xpostdchits is " << H_hod_2x_postdchits[i] << endl; */
///S2Y
t1->SetBranchAddress( "Ndata.H.hod.2y.negtdcpad", &Ndata_H_hod_2y_negtdchits);
t1->SetBranchAddress( "Ndata.H.hod.2y.postdcpad", &Ndata_H_hod_2y_postdchits);
t1->SetBranchAddress( "H.hod.2y.negtdcpad", &H_hod_2y_negtdchits);
t1->SetBranchAddress( "H.hod.2y.postdcpad", &H_hod_2y_postdchits);
//SetBranchAddress(t1, (const char*)"H.hod.2y.negtdcpad",&H_hod_2y_negtdchits,HMS->GetInt("s2y.PN ="));
//SetBranchAddress(t1, (const char*)"H.hod.2y.postdcpad",&H_hod_2y_postdchits,HMS->GetInt("s2y.PN ="));
/*
for(int i=0;i<16; i++)
cerr << "After Call the number of " << i << "th of 2ynegtdchits is " << H_hod_2y_negtdchits[i] << endl;
for(int i=0;i<16; i++)
cerr << "After Call the number of " << i << "th of 2ypostdchits is " << H_hod_2y_postdchits[i] << endl;*/
// c1pr
t1->SetBranchAddress("Ndata.H.cal.1pr.negAdcCounter", &Ndata_H_cal_1pr_negAdcCounter);
t1->SetBranchAddress("Ndata.H.cal.1pr.posAdcCounter", &Ndata_H_cal_1pr_posAdcCounter);
t1->SetBranchAddress("H.cal.1pr.negAdcCounter", &H_cal_1pr_negAdcCounter);
t1->SetBranchAddress("H.cal.1pr.posAdcCounter", &H_cal_1pr_posAdcCounter);
// c2ta
t1->SetBranchAddress("Ndata.H.cal.2ta.negAdcCounter", &Ndata_H_cal_2ta_negAdcCounter);
t1->SetBranchAddress("Ndata.H.cal.2ta.posAdcCounter", &Ndata_H_cal_2ta_posAdcCounter);
t1->SetBranchAddress("H.cal.2ta.negAdcCounter", &H_cal_2ta_negAdcCounter);
t1->SetBranchAddress("H.cal.2ta.posAdcCounter", &H_cal_2ta_posAdcCounter);
// c3ta
t1->SetBranchAddress("Ndata.H.cal.3ta.posAdcCounter", &Ndata_H_cal_3ta_posAdcCounter);
t1->SetBranchAddress("H.cal.3ta.posAdcCounter", &H_cal_3ta_posAdcCounter);
// c4ta
t1->SetBranchAddress("Ndata.H.cal.4ta.posAdcCounter", &Ndata_H_cal_4ta_posAdcCounter);
t1->SetBranchAddress("H.cal.4ta.posAdcCounter", &H_cal_4ta_posAdcCounter);
}
void EVe::DoDraw(int event)
{
t1->GetEntry(event);
TString Buff;
if(event==0) {
Buff = "";
} else {
Buff = "Run #";
Buff += run_number;
Buff += ", Event #";
Buff += event;
}
graph_title = Buff.Data();
//cout<<"Char #: "<<graph_title<<endl;
//_______________________ Lets handle X-projection view _______________________________________
if (fTextButtonProj->IsOn() && fTextButtonXPlane->IsOn()) {
c1->cd();
x1->clear();
x1p->clear();
x2->clear();
x2p->clear();
c1->Update();
if (title != NULL) delete title;
title = new TLatex(0.02,0.96, graph_title);
title->SetTextSize(0.03);
title->Draw();
for (int i = 0; i<Ndata_H_dc_1x1_tdchits; i++) {
x1->SetWire(H_dc_1x1_tdchits[i],H_dc_1x1_time[i]);
}
for (int i = 0; i<Ndata_H_dc_1x2_tdchits; i++) {
x1p->SetWire(H_dc_1x2_tdchits[i],H_dc_1x2_time[i]);
}
for (int i = 0; i<Ndata_H_dc_2x1_tdchits; i++) {
x2->SetWire(H_dc_2x1_tdchits[i],H_dc_2x1_time[i]);
}
for (int i = 0; i<Ndata_H_dc_2x2_tdchits; i++) {
x2p->SetWire(H_dc_2x2_tdchits[i],H_dc_2x2_time[i]);
}
c1->Draw();
c1->Update();
}
// //_________________________ Lets handle UV-projection view ______________________________
if (fTextButtonProj->IsOn() && fTextButtonUVPlane->IsOn()) {
c2->cd();
u1->clear();
v1->clear();
u2->clear();
v2->clear();
c2->Update();
if (title != NULL) delete title;
title = new TLatex(0.02,0.96, graph_title);
title->SetTextSize(0.03);
title->Draw();
for (int i = 0; i<Ndata_H_dc_1u1_tdchits; i++) {
u1->SetWire(H_dc_1u1_tdchits[i],H_dc_1u1_time[i]);
}
for (int i = 0; i<Ndata_H_dc_1v1_tdchits; i++) {
v1->SetWire(H_dc_1v1_tdchits[i],H_dc_1v1_time[i]);
}
for (int i = 0; i<Ndata_H_dc_2u1_tdchits; i++) {
u2->SetWire(H_dc_2u1_tdchits[i],H_dc_2u1_time[i]);
}
for (int i = 0; i<Ndata_H_dc_2v1_tdchits; i++) {
v2->SetWire(H_dc_2v1_tdchits[i],H_dc_2v1_time[i]);
}
c2->Draw();
c2->Update();
}
// //_________________________ Lets handle Y-projection view ______________________________
if (fTextButtonProj->IsOn() && fTextButtonYPlane->IsOn()) {
c4->cd();
y1->clear();
y1p->clear();
y2->clear();
y2p->clear();
c4->Update();
if (title != NULL) delete title;
title = new TLatex(0.02,0.96, graph_title);
title->SetTextSize(0.03);
title->Draw();
for (int i = 0; i<Ndata_H_dc_1y1_tdchits; i++) {
y1->SetWire(H_dc_1y1_tdchits[i],H_dc_1y1_time[i]);
}
for (int i = 0; i<Ndata_H_dc_1y2_tdchits; i++) {
y1p->SetWire(H_dc_1y2_tdchits[i],H_dc_1y2_time[i]);
}
for (int i = 0; i<Ndata_H_dc_2y1_tdchits; i++) {
y2->SetWire(H_dc_2y1_tdchits[i],H_dc_2y1_time[i]);
}
for (int i = 0; i<Ndata_H_dc_2y2_tdchits; i++) {
y2p->SetWire(H_dc_2y2_tdchits[i],H_dc_2y2_time[i]);
}
c4->Draw();
c4->Update();
}
//_________________________ Lets handle Planar view ______________________________
if (fTextButtonWires->IsOn()) {
c3->cd();
if (title != NULL) delete title;
title = new TLatex(0.50,0.02, graph_title);
title->SetTextSize(0.03);
title->Draw();
//***************** First Wire Chamber
mwdc1->clear();
GetVariables* HMSvars= new GetVariables("HMS.txt");
int x1NW= HMSvars->GetInt("MWDC1.x.NumWires =");
int v1NW= HMSvars->GetInt("MWDC1.v.NumWires =");
int yp1NW= HMSvars->GetInt("MWDC1.yp.NumWires =");
/// X plane
for(int i = 0; i<Ndata_H_dc_1x1_tdchits; i++) {
mwdc1->WireHit("x",x1NW+1-H_dc_1x1_tdchits[i]);
}
for(int i = 0; i<Ndata_H_dc_1x2_tdchits; i++) {
mwdc1->WireHit("xp",H_dc_1x2_tdchits[i]);
}
/// UV plane
for(int i = 0; i<Ndata_H_dc_1u1_tdchits; i++) {
mwdc1->WireHit("u",H_dc_1u1_tdchits[i]);
}
for(int i = 0; i<Ndata_H_dc_1v1_tdchits; i++) {
mwdc1->WireHit("v",v1NW+1-H_dc_1v1_tdchits[i]);
}
/// YP,XP plane
for(int i = 0; i<Ndata_H_dc_1y1_tdchits; i++) {
mwdc1->WireHit("y",H_dc_1y1_tdchits[i]);
}
for(int i = 0; i<Ndata_H_dc_1y2_tdchits; i++) {
mwdc1->WireHit("yp",yp1NW+1-H_dc_1y2_tdchits[i]);
}
//***************** Second Wire Chamber
mwdc2->clear();
int x2NW= HMSvars->GetInt("MWDC2.x.NumWires =");
int v2NW= HMSvars->GetInt("MWDC2.v.NumWires =");
int yp2NW= HMSvars->GetInt("MWDC2.yp.NumWires =");
/// X plane
for(int i = 0; i<Ndata_H_dc_2x1_tdchits; i++) {
mwdc2->WireHit("x",x2NW+1-H_dc_2x1_tdchits[i]);
}
for(int i = 0; i<Ndata_H_dc_2x2_tdchits; i++) {
mwdc2->WireHit("xp",H_dc_2x2_tdchits[i]);
}
/// UV plane
for(int i = 0; i<Ndata_H_dc_2u1_tdchits; i++) {
mwdc2->WireHit("u",H_dc_2u1_tdchits[i]);
}
for(int i = 0; i<Ndata_H_dc_2v1_tdchits; i++) {
mwdc2->WireHit("v",v2NW+1-H_dc_2v1_tdchits[i]);
}
/// Y plane
for(int i = 0; i<Ndata_H_dc_2y1_tdchits; i++) {
mwdc2->WireHit("y",H_dc_2y1_tdchits[i]);
}
for(int i = 0; i<Ndata_H_dc_2y2_tdchits; i++) {
mwdc2->WireHit("yp",yp2NW+1-H_dc_2y2_tdchits[i]);
}
s1Y->clear();
s1X->clear();
s2X->clear();
s2Y->clear();
s1X->SPHit(Ndata_H_hod_1x_postdchits,Ndata_H_hod_1x_negtdchits,
H_hod_1x_postdchits,H_hod_1x_negtdchits);
s1Y->SPHit(Ndata_H_hod_1y_postdchits,Ndata_H_hod_1y_negtdchits,
H_hod_1y_postdchits,H_hod_1y_negtdchits);
s2X->SPHit(Ndata_H_hod_2x_postdchits,Ndata_H_hod_2x_negtdchits,
H_hod_2x_postdchits,H_hod_2x_negtdchits);
s2Y->SPHit(Ndata_H_hod_2y_postdchits,Ndata_H_hod_2y_negtdchits,
H_hod_2y_postdchits,H_hod_2y_negtdchits);
c1pr->clear();
c2ta->clear();
c3ta->clear();
c4ta->clear();
c1pr->SPHit(
Ndata_H_cal_1pr_posAdcCounter, Ndata_H_cal_1pr_negAdcCounter,
H_cal_1pr_posAdcCounter, H_cal_1pr_negAdcCounter
);
c2ta->SPHit(
Ndata_H_cal_2ta_posAdcCounter, Ndata_H_cal_2ta_negAdcCounter,
H_cal_2ta_posAdcCounter, H_cal_2ta_negAdcCounter
);
c3ta->SPHit(
Ndata_H_cal_3ta_posAdcCounter, Ndata_H_cal_3ta_posAdcCounter,
H_cal_3ta_posAdcCounter, H_cal_3ta_posAdcCounter
);
c4ta->SPHit(
Ndata_H_cal_4ta_posAdcCounter, Ndata_H_cal_4ta_posAdcCounter,
H_cal_4ta_posAdcCounter, H_cal_4ta_posAdcCounter
);
//****** Now we draw Trajectories through detectors
if (Ndata_H_tr_x > 0 && fTextButtonTrack->IsOn()) {
for(int q =0; q<Ndata_H_tr_x; q++) {
GetVariables *hms = new GetVariables("HMS.txt");
double z1 = hms->GetDouble("MWDC2.z =");
double z3 = hms->GetDouble("s1x.z =");
double z4 = hms->GetDouble("s1y.z =");
double z5 = hms->GetDouble("s2x.z =");
double z6 = hms->GetDouble("s2y.z =");
/// Real track information
double x0 = -H_tr_y[q]/100; /// [cm] to [m]
double y0 = -H_tr_x[q]/100;
double th = -H_tr_ph[q];
double ph = -H_tr_th[q];
double x1 = x0 + th*z1;
double y1 = y0 + ph*z1;
mwdc1->Track(x0,y0,q);
mwdc2->Track(x1,y1,q);
double x3 = x0 + th*z3;
double y3 = y0 + ph*z3;
s1X->Track(x3,y3,q);
;
double x4 = x0 + th*z4;
double y4 = y0 + ph*z4;
s1Y->Track(x4,y4,q);
double x5 = x0 + th*z5;
double y5 = y0 + ph*z5;
s2X->Track(x5,y5,q);
double x6 = x0 + th*z6;
double y6 = y0 + ph*z6;
s2Y->Track(x6,y6,q);
}
}
c3->Draw();
c3->Update();
}
//_________________________ Lets handle 3D view ______________________________________
if (fTextButton3dView->IsOn()) {
//cout<<"Wait! I am working!"<<endl;
c5->cd();
if (title != NULL) delete title;
title = new TLatex(-0.96,-0.96, graph_title);
title->SetTextSize(0.03);
title->Draw();