forked from wiechula/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDetector.cxx
More file actions
1310 lines (1150 loc) · 64.7 KB
/
Copy pathDetector.cxx
File metadata and controls
1310 lines (1150 loc) · 64.7 KB
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
// Copyright CERN and copyright holders of ALICE O2. This software is
// distributed under the terms of the GNU General Public License v3 (GPL
// Version 3), copied verbatim in the file "COPYING".
//
// See http://alice-o2.web.cern.ch/license for full licensing information.
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#include "HMPIDSimulation/Detector.h"
#include "HMPIDBase/Param.h"
#include "TGeoManager.h"
#include "TGeoShapeAssembly.h"
#include "TGeoNode.h"
#include "TGeoBBox.h"
#include "TGeoXtru.h"
#include "TGeoCompositeShape.h"
#include "TVirtualMC.h"
#include "TF1.h"
#include "TF2.h"
#include "TMath.h"
#include <TPDGCode.h> //StepHistory()
#include <TGeoGlobalMagField.h>
#include <TGeoPhysicalNode.h> //AddAlignableVolumes()
#include <TGeoXtru.h> //CradleBaseVolume()
#include <TLorentzVector.h> //IsLostByFresnel()
#include <TString.h> //StepManager()
#include <TTree.h>
#include "SimulationDataFormat/Stack.h"
#include "SimulationDataFormat/TrackReference.h"
#include "DetectorsBase/MaterialManager.h"
namespace o2
{
namespace hmpid
{
Detector::Detector(Bool_t active) : o2::base::DetImpl<Detector>("HMP", active), mHits(new std::vector<HitType>) {}
Detector::Detector(const Detector& other) : mSensitiveVolumes(other.mSensitiveVolumes),
mHits(new std::vector<HitType>) {}
void Detector::InitializeO2Detector()
{
for (auto sensitiveHpad : mSensitiveVolumes) {
LOG(DEBUG) << "HMPID: registering sensitive " << sensitiveHpad->GetName();
AddSensitiveVolume(sensitiveHpad);
}
}
//*********************************************************************************************************
bool Detector::ProcessHits(FairVolume* v)
{
TString volname = fMC->CurrentVolName();
auto stack = (o2::data::Stack*)fMC->GetStack();
//Treat photons
//photon (Ckov or feedback) hits on module PC (Hpad)
if ((fMC->TrackPid() == 50000050 || fMC->TrackPid() == 50000051) && volname.Contains("Hpad")) {
if (fMC->Edep() > 0) { //photon survided QE test i.e. produces electron
if (IsLostByFresnel()) {
fMC->StopTrack();
return false;
} //photon lost due to fersnel reflection on PC
Int_t tid = fMC->GetStack()->GetCurrentTrackNumber(); //take TID
Int_t pid = fMC->TrackPid(); //take PID
Float_t etot = fMC->Etot(); //total hpoton energy, [GeV]
Double_t x[3];
fMC->TrackPosition(x[0], x[1], x[2]); //take MARS position at entrance to PC
Float_t hitTime = (Float_t)fMC->TrackTime(); //hit formation time
TString tmpname = volname;
tmpname.Remove(0, 4);
Int_t idch = tmpname.Atoi(); //retrieve the chamber number
Float_t xl, yl;
Param::Instance()->Mars2Lors(idch, x, xl, yl); //take LORS position
AddHit(x[0], x[1], x[2], hitTime, etot, tid, idch); //HIT for photon, position at P, etot will be set to Q
GenFee(etot); //generate feedback photons etot is modified in hit ctor to Q of hit
stack->addHit(GetDetId());
} //photon hit PC and DE >0
return kTRUE;
} //photon hit PC
//Treat charged particles
static Float_t eloss; //need to store mip parameters between different steps
static Double_t in[3];
if (fMC->IsTrackEntering() && fMC->TrackCharge() && volname.Contains("Hpad")) {
//Trackref stored when entering in the pad volume
o2::TrackReference tr(*fMC, GetDetId());
tr.setTrackID(stack->GetCurrentTrackNumber());
// tr.setUserId(lay);
stack->addTrackReference(tr);
}
if (fMC->TrackCharge() && volname.Contains("Hcel")) { //charged particle in amplification gap (Hcel)
if (fMC->IsTrackEntering() || fMC->IsNewTrack()) { //entering or newly created
eloss = 0; //reset Eloss collector
fMC->TrackPosition(in[0], in[1], in[2]); //take position at the entrance
} else if (fMC->IsTrackExiting() || fMC->IsTrackStop() || fMC->IsTrackDisappeared()) { //exiting or disappeared
eloss += fMC->Edep(); //take into account last step Eloss
Int_t tid = fMC->GetStack()->GetCurrentTrackNumber(); //take TID
Int_t pid = fMC->TrackPid(); //take PID
Double_t out[3];
fMC->TrackPosition(out[0], out[1], out[2]); //take MARS position at exit
Float_t hitTime = (Float_t)fMC->TrackTime(); //hit formation time
out[0] = 0.5 * (out[0] + in[0]); //
out[1] = 0.5 * (out[1] + in[1]); //take hit position at the anod plane
out[2] = 0.5 * (out[2] + in[2]);
TString tmpname = volname;
tmpname.Remove(0, 4);
Int_t idch = tmpname.Atoi(); //retrieve the chamber number
Float_t xl, yl;
Param::Instance()->Mars2Lors(idch, out, xl, yl); //take LORS position
if (eloss > 0) {
// HIT for MIP, position near anod plane, eloss will be set to Q
AddHit(out[0], out[1], out[2], hitTime, eloss, tid, idch);
GenFee(eloss); //generate feedback photons
stack->addHit(GetDetId());
eloss = 0;
}
} else {
//just going inside
eloss += fMC->Edep(); //collect this step eloss
}
return kTRUE;
} //MIP in GAP
// later on return true if there was a hit!
return false;
}
//*********************************************************************************************************
HitType* Detector::AddHit(float x, float y, float z, float time, float energy, Int_t trackId, Int_t detId)
{
mHits->emplace_back(x, y, z, time, energy, trackId, detId);
return &(mHits->back());
}
//*********************************************************************************************************
void Detector::GenFee(Float_t qtot)
{
// Generate FeedBack photons for the current particle. To be invoked from StepManager().
// eloss=0 means photon so only pulse height distribution is to be analysed.
TLorentzVector x4;
fMC->TrackPosition(x4);
Int_t iNphotons = fMC->GetRandom()->Poisson(0.02 * qtot); //# of feedback photons is proportional to the charge of hit
//AliDebug(1,Form("N photons=%i",iNphotons));
Int_t j;
Float_t cthf, phif, enfp = 0, sthf, e1[3], e2[3], e3[3], vmod, uswop, dir[3], phi, pol[3], mom[4];
//Generate photons
for (Int_t i = 0; i < iNphotons; i++) { //feedbacks loop
Double_t ranf[2];
fMC->GetRandom()->RndmArray(2, ranf); //Sample direction
cthf = ranf[0] * 2 - 1.0;
if (cthf < 0)
continue;
sthf = TMath::Sqrt((1. - cthf) * (1. + cthf));
phif = ranf[1] * 2 * TMath::Pi();
if (Double_t randomNumber = fMC->GetRandom()->Rndm() <= 0.57)
enfp = 7.5e-9;
else if (randomNumber <= 0.7)
enfp = 6.4e-9;
else
enfp = 7.9e-9;
dir[0] = sthf * TMath::Sin(phif);
dir[1] = cthf;
dir[2] = sthf * TMath::Cos(phif);
fMC->Gdtom(dir, mom, 2);
mom[0] *= enfp;
mom[1] *= enfp;
mom[2] *= enfp;
mom[3] = TMath::Sqrt(mom[0] * mom[0] + mom[1] * mom[1] + mom[2] * mom[2]);
// Polarisation
e1[0] = 0;
e1[1] = -dir[2];
e1[2] = dir[1];
e2[0] = -dir[1];
e2[1] = dir[0];
e2[2] = 0;
e3[0] = dir[1];
e3[1] = 0;
e3[2] = -dir[0];
vmod = 0;
for (j = 0; j < 3; j++)
vmod += e1[j] * e1[j];
if (!vmod)
for (j = 0; j < 3; j++) {
uswop = e1[j];
e1[j] = e3[j];
e3[j] = uswop;
}
vmod = 0;
for (j = 0; j < 3; j++)
vmod += e2[j] * e2[j];
if (!vmod)
for (j = 0; j < 3; j++) {
uswop = e2[j];
e2[j] = e3[j];
e3[j] = uswop;
}
vmod = 0;
for (j = 0; j < 3; j++)
vmod += e1[j] * e1[j];
vmod = TMath::Sqrt(1 / vmod);
for (j = 0; j < 3; j++)
e1[j] *= vmod;
vmod = 0;
for (j = 0; j < 3; j++)
vmod += e2[j] * e2[j];
vmod = TMath::Sqrt(1 / vmod);
for (j = 0; j < 3; j++)
e2[j] *= vmod;
phi = fMC->GetRandom()->Rndm() * 2 * TMath::Pi();
for (j = 0; j < 3; j++)
pol[j] = e1[j] * TMath::Sin(phi) + e2[j] * TMath::Cos(phi);
fMC->Gdtom(pol, pol, 2);
Int_t outputNtracksStored;
} //feedbacks loop
} //GenerateFeedbacks()
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Bool_t Detector::IsLostByFresnel()
{
// Calculate probability for the photon to be lost by Fresnel reflection.
TLorentzVector p4;
Double_t mom[3], localMom[3];
fMC->TrackMomentum(p4);
mom[0] = p4(1);
mom[1] = p4(2);
mom[2] = p4(3);
localMom[0] = 0;
localMom[1] = 0;
localMom[2] = 0;
fMC->Gmtod(mom, localMom, 2);
Double_t localTc = localMom[0] * localMom[0] + localMom[2] * localMom[2];
Double_t localTheta = TMath::ATan2(TMath::Sqrt(localTc), localMom[1]);
Double_t cotheta = TMath::Abs(TMath::Cos(localTheta));
if (fMC->GetRandom()->Rndm() < Fresnel(p4.E() * 1e9, cotheta, 1)) {
// AliDebug(1,"Photon lost");
return kTRUE;
} else
return kFALSE;
} //IsLostByFresnel()
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Float_t Detector::Fresnel(Float_t ene, Float_t pdoti, Bool_t pola)
{
// Correction for Fresnel ???????????
// Arguments: ene - photon energy [GeV],
// PDOTI=COS(INC.ANG.), PDOTR=COS(POL.PLANE ROT.ANG.)
// Returns:
Float_t en[36] = { 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6.0, 6.1, 6.2,
6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7,
7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5 };
Float_t csin[36] = { 2.14, 2.21, 2.33, 2.48, 2.76, 2.97, 2.99, 2.59, 2.81, 3.05,
2.86, 2.53, 2.55, 2.66, 2.79, 2.96, 3.18, 3.05, 2.84, 2.81, 2.38, 2.11,
2.01, 2.13, 2.39, 2.73, 3.08, 3.15, 2.95, 2.73, 2.56, 2.41, 2.12, 1.95,
1.72, 1.53 };
Float_t csik[36] = { 0., 0., 0., 0., 0., 0.196, 0.408, 0.208, 0.118, 0.49, 0.784, 0.543,
0.424, 0.404, 0.371, 0.514, 0.922, 1.102, 1.139, 1.376, 1.461, 1.253, 0.878,
0.69, 0.612, 0.649, 0.824, 1.347, 1.571, 1.678, 1.763, 1.857, 1.824, 1.824,
1.714, 1.498 };
Float_t xe = ene;
Int_t j = Int_t(xe * 10) - 49;
Float_t cn = csin[j] + ((csin[j + 1] - csin[j]) / 0.1) * (xe - en[j]);
Float_t ck = csik[j] + ((csik[j + 1] - csik[j]) / 0.1) * (xe - en[j]);
//FORMULAE FROM HANDBOOK OF OPTICS, 33.23 OR
//W.R. HUNTER, J.O.S.A. 54 (1964),15 , J.O.S.A. 55(1965),1197
Float_t sinin = TMath::Sqrt((1. - pdoti) * (1. + pdoti));
Float_t tanin = sinin / pdoti;
Float_t c1 = cn * cn - ck * ck - sinin * sinin;
Float_t c2 = 4 * cn * cn * ck * ck;
Float_t aO = TMath::Sqrt(0.5 * (TMath::Sqrt(c1 * c1 + c2) + c1));
Float_t b2 = 0.5 * (TMath::Sqrt(c1 * c1 + c2) - c1);
Float_t rs = ((aO - pdoti) * (aO - pdoti) + b2) / ((aO + pdoti) * (aO + pdoti) + b2);
Float_t rp = rs * ((aO - sinin * tanin) * (aO - sinin * tanin) + b2) /
((aO + sinin * tanin) * (aO + sinin * tanin) + b2);
//CORRECTION FACTOR FOR SURFACE ROUGHNESS
//B.J. STAGG APPLIED OPTICS, 30(1991),4113
Float_t sigraf = 18.;
Float_t lamb = 1240 / ene;
Float_t fresn;
Float_t rO = TMath::Exp(-(4 * TMath::Pi() * pdoti * sigraf / lamb) *
(4 * TMath::Pi() * pdoti * sigraf / lamb));
if (pola) {
Float_t pdotr = 0.8; //DEGREE OF POLARIZATION : 1->P , -1->S
fresn = 0.5 * (rp * (1 + pdotr) + rs * (1 - pdotr));
} else
fresn = 0.5 * (rp + rs);
fresn = fresn * rO;
return fresn;
} //Fresnel()
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
void Detector::Register() { FairRootManager::Instance()->RegisterAny(addNameTo("Hit").data(), mHits, true); }
void Detector::Reset()
{
if (!o2::utils::ShmManager::Instance().isOperational()) {
mHits->clear();
}
}
void Detector::IdealPosition(Int_t iCh, TGeoHMatrix* pMatrix) // ideal position of given chamber
{
// Construct ideal position matrix for a given chamber
// Arguments: iCh- chamber ID; pMatrix- pointer to precreated unity matrix where to store the results
// Returns: none
const double kAngHor = 19.5; // horizontal angle between chambers 19.5 grad
const double kAngVer = 20; // vertical angle between chambers 20 grad
const double kAngCom = 30; // common HMPID rotation with respect to x axis 30 grad
const double kTrans[3] = { 490, 0, 0 }; // center of the chamber is on window-gap surface
pMatrix->RotateY(90); // rotate around y since initial position is in XY plane -> now in YZ plane
pMatrix->SetTranslation(kTrans); // now plane in YZ is shifted along x
switch (iCh) {
case 0:
pMatrix->RotateY(kAngHor);
pMatrix->RotateZ(-kAngVer);
break; // right and down
case 1:
pMatrix->RotateZ(-kAngVer);
break; // down
case 2:
pMatrix->RotateY(kAngHor);
break; // right
case 3:
break; // no rotation
case 4:
pMatrix->RotateY(-kAngHor);
break; // left
case 5:
pMatrix->RotateZ(kAngVer);
break; // up
case 6:
pMatrix->RotateY(-kAngHor);
pMatrix->RotateZ(kAngVer);
break; // left and up
}
pMatrix->RotateZ(kAngCom); // apply common rotation in XY plane
}
void Detector::IdealPositionCradle(Int_t iCh, TGeoHMatrix* pMatrix) // ideal position of given one module of the cradle
{
// Construct ideal position matrix for a given module cradle
// Arguments: iCh- chamber ID; pMatrix- pointer to precreated unity matrix where to store the results
// Returns: none
const double kAngHor = 19.5; // horizontal angle between chambers 19.5 grad
const double kAngVer = 20; // vertical angle between chambers 20 grad
const double kAngCom = 30; // common HMPID rotation with respect to x axis 30 grad
const double kTrans[3] = { 423. + 29, 0, 67 }; // z-center of the cradle module
pMatrix->RotateY(90); // rotate around y since initial position is in XY plane -> now in YZ plane
pMatrix->SetTranslation(kTrans); // now plane in YZ is shifted along x
switch (iCh) {
case 0:
pMatrix->RotateY(kAngHor);
pMatrix->RotateZ(-kAngVer);
break; // right and down
case 1:
pMatrix->RotateZ(-kAngVer);
break; // down
case 2:
pMatrix->RotateY(kAngHor);
break; // right
case 3:
break; // no rotation
case 4:
pMatrix->RotateY(-kAngHor);
break; // left
case 5:
pMatrix->RotateZ(kAngVer);
break; // up
case 6:
pMatrix->RotateY(-kAngHor);
pMatrix->RotateZ(kAngVer);
break; // left and up
}
pMatrix->RotateZ(kAngCom); // apply common rotation in XY plane
}
//*********************************************************************************************************
void Detector::createMaterials()
{
// implement materials here
// Definition of available HMPID materials
// Arguments: none
// Returns: none
// clm update material definition later on from Antonello
// Ported to O2 (24.4.2018) -- taken from AliRoot AliHMPIDv3
// data from PDG booklet 2002 density [gr/cm^3] rad len [cm] abs len [cm]
float aAir[4] = { 12, 14, 16, 36 }, zAir[4] = { 6, 7, 8, 18 }, wAir[4] = { 0.000124, 0.755267, 0.231781, 0.012827 },
dAir = 0.00120479;
int nAir = 4; // mixture 0.9999999
float aC6F14[2] = { 12.01, 18.99 }, zC6F14[2] = { 6, 9 }, wC6F14[2] = { 6, 14 }, dC6F14 = 1.68;
int nC6F14 = -2;
float aSiO2[2] = { 28.09, 15.99 }, zSiO2[2] = { 14, 8 }, wSiO2[2] = { 1, 2 }, dSiO2 = 2.64;
int nSiO2 = -2;
float aCH4[2] = { 12.01, 1.01 }, zCH4[2] = { 6, 1 }, wCH4[2] = { 1, 4 }, dCH4 = 7.17e-4;
int nCH4 = -2;
float aRoha = 12.01, zRoha = 6, dRoha = 0.10, radRoha = 18.80,
absRoha = 86.3 / dRoha; // special material- quasi quartz
float aCu = 63.55, zCu = 29, dCu = 8.96, radCu = 1.43, absCu = 134.9 / dCu;
float aW = 183.84, zW = 74, dW = 19.30, radW = 0.35, absW = 185.0 / dW;
float aAl = 26.98, zAl = 13, dAl = 2.70, radAl = 8.90, absAl = 106.4 / dAl;
float aAr = 39.94, zAr = 18, dAr = 1.396e-3, radAr = 14.0, absAr = 117.2 / dAr;
int matId = 0; // tmp material id number
int unsens = 0, sens = 1; // sensitive or unsensitive medium
int itgfld;
float maxfld;
o2::base::Detector::initFieldTrackingParams(itgfld, maxfld);
float tmaxfd = -10.0; // max deflection angle due to magnetic field in one step
float deemax = -0.2; // max fractional energy loss in one step
float stemax = -0.1; // max step allowed [cm]
float epsil = 0.001; // abs tracking precision [cm]
float stmin = -0.001; // min step size [cm] in continius process transport, negative value: choose it automatically
// PCB copmposed mainly by G10 (Si,C,H,O) -> CsI is negligible (<500nm thick)
// So what is called CsI has the optical properties of CsI, but the composition of G-10 (for delta elec, etc
// production...)
float aG10[4] = { 28.09, 12.01, 1.01, 16.00 };
float zG10[4] = { 14., 6., 1., 8. };
float wG10[4] = { 0.129060, 0.515016, 0.061873, 0.294050 };
float dG10 = 1.7;
int nG10 = 4;
Mixture(++matId, "Air", aAir, zAir, dAir, nAir, wAir);
Medium(kAir, "Air", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
Mixture(++matId, "C6F14", aC6F14, zC6F14, dC6F14, nC6F14, wC6F14);
Medium(kC6F14, "C6F14", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
Mixture(++matId, "SiO2", aSiO2, zSiO2, dSiO2, nSiO2, wSiO2);
Medium(kSiO2, "SiO2", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
Mixture(++matId, "CH4", aCH4, zCH4, dCH4, nCH4, wCH4);
Medium(kCH4, "CH4", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
Mixture(++matId, "CsI+PCB", aG10, zG10, dG10, nG10, wG10);
Medium(kCsI, "CsI", matId, sens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin); // sensitive
Mixture(++matId, "Neo", aSiO2, zSiO2, dSiO2, nSiO2, wSiO2);
Medium(kNeo, "Neo", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin); // clm neoceram
Material(++matId, "Roha", aRoha, zRoha, dRoha, radRoha, absRoha);
Medium(kRoha, "Roha", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin); // Roha->honeycomb
Material(++matId, "Cu", aCu, zCu, dCu, radCu, absCu);
Medium(kCu, "Cu", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
Material(++matId, "W", aW, zW, dW, radW, absW);
Medium(kW, "W", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
Material(++matId, "Al", aAl, zAl, dAl, radAl, absAl);
Medium(kAl, "Al", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
Material(++matId, "Ar", aAr, zAr, dAr, radAr, absAr);
Medium(kAr, "Ar", matId, unsens, itgfld, maxfld, tmaxfd, stemax, deemax, epsil, stmin);
}
//**************************************************************************************************
TGeoVolume* Detector::createChamber(int number)
{
// Single module geometry building
double cm = 1, mm = 0.1 * cm, um = 0.001 * mm; // default is cm
TGeoVolume* hmp = new TGeoVolumeAssembly(Form("Hmp%i", number));
auto& matmgr = o2::base::MaterialManager::Instance();
TGeoMedium* al = matmgr.getTGeoMedium("HMP_Al");
TGeoMedium* ch4 = matmgr.getTGeoMedium("HMP_CH4");
TGeoMedium* roha = matmgr.getTGeoMedium("HMP_Roha");
TGeoMedium* neoc = matmgr.getTGeoMedium("HMP_Neo");
TGeoMedium* c6f14 = matmgr.getTGeoMedium("HMP_C6F14");
TGeoMedium* sio2 = matmgr.getTGeoMedium("HMP_SiO2");
TGeoMedium* cu = matmgr.getTGeoMedium("HMP_Cu");
TGeoMedium* w = matmgr.getTGeoMedium("HMP_W");
TGeoMedium* csi = matmgr.getTGeoMedium("HMP_CsI");
TGeoMedium* ar = matmgr.getTGeoMedium("HMP_Ar");
TGeoRotation* rot = new TGeoRotation("HwireRot");
rot->RotateY(90); // rotate wires around Y to be along X (initially along Z)
TGeoVolume* sbo = gGeoManager->MakeBox("Hsbo", ch4, 1419 * mm / 2, 1378.00 * mm / 2, 50.5 * mm / 2); // 2072P1
TGeoVolume* cov = gGeoManager->MakeBox("Hcov", al, 1419 * mm / 2, 1378.00 * mm / 2, 0.5 * mm / 2);
TGeoVolume* hon = gGeoManager->MakeBox("Hhon", roha, 1359 * mm / 2, 1318.00 * mm / 2, 49.5 * mm / 2);
TGeoVolume* rad = gGeoManager->MakeBox("Hrad", c6f14, 1330 * mm / 2, 413.00 * mm / 2, 24.0 * mm / 2); // 2011P1
TGeoVolume* neo = gGeoManager->MakeBox("Hneo", neoc, 1330 * mm / 2, 413.00 * mm / 2, 4.0 * mm / 2);
TGeoVolume* win = gGeoManager->MakeBox("Hwin", sio2, 1330 * mm / 2, 413.00 * mm / 2, 5.0 * mm / 2);
TGeoVolume* si1 = gGeoManager->MakeBox("Hsi1", sio2, 1330 * mm / 2, 5.00 * mm / 2, 15.0 * mm / 2);
TGeoVolume* si2 = gGeoManager->MakeBox("Hsi2", neoc, 10 * mm / 2, 403.00 * mm / 2, 15.0 * mm / 2);
TGeoVolume* spa = gGeoManager->MakeTube("Hspa", sio2, 0 * mm, 5.00 * mm, 15.0 * mm / 2);
TGeoVolume* fr4 = gGeoManager->MakeBox("Hfr4", ch4, 1407 * mm / 2, 1366.00 * mm / 2, 15.0 * mm / 2); // 2043P1
TGeoVolume* f4a = gGeoManager->MakeBox("Hf4a", al, 1407 * mm / 2, 1366.00 * mm / 2, 10.0 * mm / 2);
TGeoVolume* f4i = gGeoManager->MakeBox("Hf4i", ch4, 1323 * mm / 2, 1296.00 * mm / 2, 10.0 * mm / 2);
TGeoVolume* col = gGeoManager->MakeTube("Hcol", cu, 0 * mm, 100.00 * um, 1323.0 * mm / 2);
TGeoVolume* sec = gGeoManager->MakeBox("Hsec", ch4, 648 * mm / 2, 411.00 * mm / 2,
6.2 * mm / 2); // sec=gap 2099P1 (6.2 = 4.45 + 0.05 (1/2 diameter wire)+1.7)
double cellx = 8.04 * mm, celly = 8.4 * mm;
int nPadX = 80, nPadY = 48;
TGeoVolume* gap = gGeoManager->MakeBox("Hgap", ch4, cellx * nPadX / 2, celly * nPadY / 2,
6.2 * mm / 2); // x=8.04*80 y=8.4*48 z=pad+pad-ano+marign 2006p1
TGeoVolume* row = gap->Divide("Hrow", 2, nPadY, 0, 0); // along Y->48 rows
TGeoVolume* cel = row->Divide(Form("Hcel%i", number), 1, nPadX, 0, 0); // along X->80 cells
mSensitiveVolumes.emplace_back(cel);
TGeoVolume* cat = gGeoManager->MakeTube("Hcat", cu, 0.00 * mm, 50.00 * um, cellx / 2);
TGeoVolume* ano = gGeoManager->MakeTube("Hano", w, 0.00 * mm, 20.00 * um, cellx / 2);
TGeoVolume* pad = gGeoManager->MakeBox(Form("Hpad%i", number), csi, 7.54 * mm / 2, 7.90 * mm / 2,
1.7 * mm / 2); // 2006P1 PCB material...
mSensitiveVolumes.emplace_back(pad);
TGeoVolume* fr1 = gGeoManager->MakeBox("Hfr1", al, 1463 * mm / 2, 1422.00 * mm / 2,
58.3 * mm / 2); // 2040P1 and pad plane is excluded (62 - 2 - 17)
TGeoVolume* fr1up = gGeoManager->MakeBox("Hfr1up", ch4, (1426.00 - 37.00) * mm / 2, (1385.00 - 37.00) * mm / 2,
20.0 * mm / 2); // 2040P1
TGeoVolume* fr1upcard = gGeoManager->MakeBox("Hfr1upcard", ch4, 662. * mm / 2., 425. * mm / 2.,
19.0 * mm / 2); // needed to set the gassiplex
TGeoVolume* fr1perUpBig = gGeoManager->MakeBox("Hfr1perUpBig", ch4, 1389 * mm / 2, 35 * mm / 2, 10 * mm / 2);
TGeoVolume* fr1perUpSma =
gGeoManager->MakeBox("Hfr1perUpSma", ch4, 35 * mm / 2, (1385 - 37 - 2 * 35) * mm / 2, 10 * mm / 2);
TGeoVolume* fr1perDowBig = gGeoManager->MakeBox("Hfr1perDowBig", ch4, 1389 * mm / 2, 46 * mm / 2, 2.3 * mm / 2);
TGeoVolume* fr1perDowSma =
gGeoManager->MakeBox("Hfr1perDowSma", ch4, 46 * mm / 2, (1385 - 37 - 2 * 46) * mm / 2, 2.3 * mm / 2);
TGeoVolume* ppf = gGeoManager->MakeBox("Hppf", al, 648 * mm / 2, 411.00 * mm / 2, 38.3 * mm / 2); // 2001P2
TGeoVolume* lar = gGeoManager->MakeBox("Hlar", ar, 181 * mm / 2, 89.25 * mm / 2, 38.3 * mm / 2); // 2001P2
TGeoVolume* smo = gGeoManager->MakeBox("Hsmo", ar, 114 * mm / 2, 89.25 * mm / 2, 38.3 * mm / 2); // 2001P2
TGeoVolume* cufoil = gGeoManager->MakeBox("Hcufoil", csi, 662. * mm / 2., 425. * mm / 2.,
1. * mm / 2.); // PCB foil at the back of the ppf with holes for GASSIPLEX
TGeoVolume* rect = gGeoManager->MakeBox("Hrect", ch4, 48 * mm / 2, 19 * mm / 2., 1 * mm / 2.);
TGeoVolume* fr3 = gGeoManager->MakeBox("Hfr3", al, 1463 * mm / 2, 1422 * mm / 2, 34 * mm / 2); // 2041P1
TGeoVolume* fr3up = gGeoManager->MakeBox("Hfr3up", ch4, 1323 * mm / 2, 1282 * mm / 2, 20 * mm / 2); // 2041P1
TGeoVolume* fr3down = gGeoManager->MakeBox("Hfr3down", ch4, 1437 * mm / 2, 1370 * mm / 2, 14 * mm / 2); // 2041P1
TGeoVolume* proxgap1 = gGeoManager->MakeBox("Hproxgap1", ch4, 1407 * mm / 2, 1366.00 * mm / 2,
(9. - 7.5) * mm / 2.); // methane volume between quartz and fr4
TGeoVolume* proxgap2 = gGeoManager->MakeBox("Hproxgap2", ch4, 1407 * mm / 2, 1366.00 * mm / 2,
(81.7 - 6.2 - 34. - 9. - 7.5) * mm / 2.); // methane volume between fr4
// and Hgap(tot height(81.7) -
// Hsec (6.2) - proxygap2 (34)
// -upper bound of fr4 (9+7.5))
// ^ Y z= z=-12mm z=98.25mm ALIC->7xHmp (virtual)-->1xHsbo (virtual) --->2xHcov (real)
// 2072P1
// | ____________________________________ | |-->1xHhon (real)
// 2072P1
// | | ______ ____ ______ | |
// | | | | | * | | | |->3xHrad (virtual) --->1xHneo (real)
// 2011P1
// | |50.5mm| |24mm| * |45.5mm| | | |-->1xHwin (real)
// 2011P1
// | | | | | * | | | | |-->2xHsi1 (real)
// 2011P1
// | | | |____| * |______| | | |-->2xHsi2 (real)
// 2011P1
// | | | ____ * ______ | | |->30xHspa (real)
// 2011P1
// | | | | | * | | | |
// | | | | | * | | | |->1xHfr4 (vitual) --->1xHf4a
// (real)---->1xHf4i(virtual) 2043P1
// | | sb | | rad| * | | | | |-->322xHcol (real)
// 2043P1
// | | | |____| * |______| | |
// | | | ____ * ______ | |->1xHfr1 (real) --> 6xHppf(real)
// ---->8xHlar (virtual) 2001P1
// | | | | | * | | | | |--->8xHsmo (virtual) 2001P1
// | | | | | * | | | |
// | | | | | * | | | |-> 6xHgap (virtual) --->48xHrow
// (virtual) -->80xHcel (virtual) -->4xHcat (real) from p84 TDR
// | |______| |____| * |______| | |-->2xHano (real) from p84 TDR
// |____________________________________| |-->1xHpad (real) from p84 TDR
// --->Z
hmp->AddNode(sbo, 1, new TGeoTranslation(0 * mm, 0 * mm, -73.75 * mm)); // p.84 TDR
sbo->AddNode(hon, 1, new TGeoTranslation(0 * mm, 0 * mm, 0 * mm)); // 2072P1
sbo->AddNode(cov, 1, new TGeoTranslation(0 * mm, 0 * mm, +25 * mm));
sbo->AddNode(cov, 2, new TGeoTranslation(0 * mm, 0 * mm, -25 * mm));
hmp->AddNode(rad, 2, new TGeoTranslation(0 * mm, +434 * mm, -12.00 * mm));
hmp->AddNode(rad, 1, new TGeoTranslation(0 * mm, 0 * mm, -12.00 * mm));
hmp->AddNode(rad, 0, new TGeoTranslation(0 * mm, -434 * mm, -12.00 * mm));
rad->AddNode(neo, 1, new TGeoTranslation(0 * mm, 0 * mm, -10.0 * mm));
rad->AddNode(win, 1, new TGeoTranslation(0 * mm, 0 * mm, 9.5 * mm));
rad->AddNode(si1, 1, new TGeoTranslation(0 * mm, -204 * mm, -0.5 * mm));
rad->AddNode(si1, 2, new TGeoTranslation(0 * mm, +204 * mm, -0.5 * mm));
rad->AddNode(si2, 1, new TGeoTranslation(-660 * mm, 0 * mm, -0.5 * mm));
rad->AddNode(si2, 2, new TGeoTranslation(+660 * mm, 0 * mm, -0.5 * mm));
for (Int_t i = 0; i < 3; i++)
for (Int_t j = 0; j < 10; j++)
rad->AddNode(spa, 10 * i + j,
new TGeoTranslation(-1330 * mm / 2 + 116 * mm + j * 122 * mm, (i - 1) * 105 * mm, -0.5 * mm));
hmp->AddNode(fr4, 1, new TGeoTranslation(0 * mm, 0 * mm, 9.00 * mm)); // p.84 TDR
for (int i = 1; i <= 322; i++)
fr4->AddNode(col, i, new TGeoCombiTrans(0 * mm, -1296 / 2 * mm + i * 4 * mm, -5 * mm, rot)); // F4 2043P1
fr4->AddNode(f4a, 1, new TGeoTranslation(0 * mm, 0 * mm, 2.5 * mm));
f4a->AddNode(f4i, 1, new TGeoTranslation(0 * mm, 0 * mm, 0 * mm));
hmp->AddNode(sec, 4, new TGeoTranslation(-335 * mm, +433 * mm, 78.6 * mm));
hmp->AddNode(sec, 5, new TGeoTranslation(+335 * mm, +433 * mm, 78.6 * mm));
hmp->AddNode(sec, 2, new TGeoTranslation(-335 * mm, 0 * mm, 78.6 * mm));
hmp->AddNode(sec, 3, new TGeoTranslation(+335 * mm, 0 * mm, 78.6 * mm));
hmp->AddNode(sec, 0, new TGeoTranslation(-335 * mm, -433 * mm, 78.6 * mm));
hmp->AddNode(sec, 1, new TGeoTranslation(+335 * mm, -433 * mm, 78.6 * mm));
sec->AddNode(gap, 1, new TGeoTranslation(0, 0, 0. * mm));
cel->AddNode(cat, 1, new TGeoCombiTrans(0, 3.15 * mm, -2.70 * mm, rot)); // 4 cathode wires
cel->AddNode(ano, 1, new TGeoCombiTrans(0, 2.00 * mm, -0.29 * mm, rot)); // 2 anod wires
cel->AddNode(cat, 2, new TGeoCombiTrans(0, 1.05 * mm, -2.70 * mm, rot));
cel->AddNode(cat, 3, new TGeoCombiTrans(0, -1.05 * mm, -2.70 * mm, rot));
cel->AddNode(ano, 2, new TGeoCombiTrans(0, -2.00 * mm, -0.29 * mm, rot));
cel->AddNode(cat, 4, new TGeoCombiTrans(0, -3.15 * mm, -2.70 * mm, rot));
cel->AddNode(pad, 1, new TGeoTranslation(0, 0.00 * mm, 2.25 * mm)); // 1 pad
hmp->AddNode(fr1, 1, new TGeoTranslation(0., 0., (80. + 1.7) * mm + 58.3 * mm / 2.));
fr1->AddNode(fr1up, 1, new TGeoTranslation(0., 0., (58.3 * mm - 20.00 * mm) / 2.));
fr1->AddNode(fr1perUpBig, 0,
new TGeoTranslation(0., (1385 - 37 - 35) * mm / 2., (58.3 * mm - 20.00 * 2 * mm - 10.0 * mm) / 2.));
fr1->AddNode(fr1perUpSma, 0,
new TGeoTranslation((1426 - 37 - 35) * mm / 2., 0., (58.3 * mm - 20.00 * 2 * mm - 10.0 * mm) / 2.));
fr1->AddNode(fr1perUpBig, 1,
new TGeoTranslation(0., -(1385 - 37 - 35) * mm / 2., (58.3 * mm - 20.00 * 2 * mm - 10.0 * mm) / 2.));
fr1->AddNode(fr1perUpSma, 1,
new TGeoTranslation(-(1426 - 37 - 35) * mm / 2., 0., (58.3 * mm - 20.00 * 2 * mm - 10.0 * mm) / 2.));
fr1->AddNode(fr1perDowBig, 0, new TGeoTranslation(0., (1385 - 37) * mm / 2., (-58.3 * mm + 2.3 * mm) / 2.));
fr1->AddNode(fr1perDowSma, 0, new TGeoTranslation((1426 - 37) * mm / 2., 0., (-58.3 * mm + 2.3 * mm) / 2.));
fr1->AddNode(fr1perDowBig, 1, new TGeoTranslation(0., -(1385 - 37) * mm / 2., (-58.3 * mm + 2.3 * mm) / 2.));
fr1->AddNode(fr1perDowSma, 1, new TGeoTranslation(-(1426 - 37) * mm / 2., 0., (-58.3 * mm + 2.3 * mm) / 2.));
fr1->AddNode(ppf, 4, new TGeoTranslation(-335 * mm, 433 * mm, (-58.3 + 38.3) * mm / 2.));
fr1->AddNode(ppf, 5, new TGeoTranslation(335 * mm, 433 * mm, (-58.3 + 38.3) * mm / 2.));
fr1->AddNode(ppf, 2, new TGeoTranslation(-335 * mm, 0., (-58.3 + 38.3) * mm / 2.));
fr1->AddNode(ppf, 3, new TGeoTranslation(335 * mm, 0., (-58.3 + 38.3) * mm / 2.));
fr1->AddNode(ppf, 0, new TGeoTranslation(-335 * mm, -433 * mm, (-58.3 + 38.3) * mm / 2.));
fr1->AddNode(ppf, 1, new TGeoTranslation(335 * mm, -433 * mm, (-58.3 + 38.3) * mm / 2.));
Double_t offsetx = 16. * mm, offsety = 34. * mm / 2., interdistx = 48 * mm + offsetx + 0.6666 * mm,
interdisty = 19. * mm + 2. * offsety;
// gassiplex implementation
// it is in 3 different volumes: Hrec (in Hcufoil)+Hext
TGeoVolume* gassipl2 = gGeoManager->MakeBox("Hgassipl2", csi, 32. * mm / 2, 3. * mm / 2., 1. * mm / 2.); // in Hrect
TGeoVolume* gassipl3 =
gGeoManager->MakeBox("Hgassipl3", csi, 60. * mm / 2, 3. * mm / 2., 19. * mm / 2.); // in Hfr1upcard
TGeoVolume* gassipl4 = gGeoManager->MakeBox(
"Hgassipl4", csi, 60. * mm / 2, 3. * mm / 2.,
91. * mm / 2.); // in Hext (the big rectangle of the card is 110 mm long, 62 mm wide and 1.5 mm high)
TGeoVolume* busext = gGeoManager->MakeTubs("Hbusext", csi, 29 * mm, 30 * mm, 40 * mm / 2., 0., 180); // in Hext
TGeoVolume* ext = new TGeoVolumeAssembly("Hext");
rect->AddNode(gassipl2, 1, new TGeoTranslation(0., 0., 0));
for (Int_t hor = 0; hor < 10; hor++) {
for (Int_t vert = 0; vert < 8; vert++) {
cufoil->AddNode(rect, hor + vert * 10,
new TGeoTranslation(offsetx + 48. * mm / 2 + hor * interdistx - 662. * mm / 2,
offsety + 19. * mm / 2 + vert * interdisty - 425. * mm / 2., 0.));
fr1upcard->AddNode(gassipl3, hor + vert * 10,
new TGeoTranslation(offsetx + 48. * mm / 2 + hor * interdistx - 662. * mm / 2,
offsety + 19. * mm / 2 + vert * interdisty - 425. * mm / 2., 0.));
ext->AddNode(gassipl4, hor + vert * 10,
new TGeoTranslation(offsetx + 48. * mm / 2 + hor * interdistx - 662. * mm / 2,
offsety + 19. * mm / 2 + vert * interdisty - 425. * mm / 2., 0));
ext->AddNode(busext, hor + vert * 10,
new TGeoTranslation(offsetx + 48. * mm / 2 + hor * interdistx - 662. * mm / 2,
offsety + 19. * mm / 2 + vert * interdisty - 425. * mm / 2 + 3. * mm / 2., 0));
}
}
fr1up->AddNode(cufoil, 4, new TGeoTranslation(-335 * mm, 433 * mm, -20.0 * mm / 2 + 1. * mm / 2));
fr1up->AddNode(cufoil, 5, new TGeoTranslation(335 * mm, 433 * mm, -20.0 * mm / 2 + 1. * mm / 2));
fr1up->AddNode(cufoil, 2, new TGeoTranslation(-335 * mm, 0, -20.0 * mm / 2 + 1. * mm / 2));
fr1up->AddNode(cufoil, 3, new TGeoTranslation(335 * mm, 0, -20.0 * mm / 2 + 1. * mm / 2));
fr1up->AddNode(cufoil, 0, new TGeoTranslation(-335 * mm, -433 * mm, -20.0 * mm / 2 + 1. * mm / 2));
fr1up->AddNode(cufoil, 1, new TGeoTranslation(335 * mm, -433 * mm, -20.0 * mm / 2 + 1. * mm / 2));
fr1up->AddNode(fr1upcard, 4, new TGeoTranslation(-335 * mm, 433 * mm, 1. * mm / 2.));
fr1up->AddNode(fr1upcard, 5, new TGeoTranslation(335 * mm, 433 * mm, 1. * mm / 2.));
fr1up->AddNode(fr1upcard, 2, new TGeoTranslation(-335 * mm, 0, 1. * mm / 2.));
fr1up->AddNode(fr1upcard, 3, new TGeoTranslation(335 * mm, 0, 1. * mm / 2.));
fr1up->AddNode(fr1upcard, 0, new TGeoTranslation(-335 * mm, -433 * mm, 1. * mm / 2));
fr1up->AddNode(fr1upcard, 1, new TGeoTranslation(335 * mm, -433 * mm, 1. * mm / 2.));
hmp->AddNode(ext, 4, new TGeoTranslation(-335 * mm, +433 * mm, (80. + 1.7) * mm + 58.3 * mm + 91 * mm / 2.));
hmp->AddNode(ext, 5, new TGeoTranslation(+335 * mm, +433 * mm, (80. + 1.7) * mm + 58.3 * mm + 91 * mm / 2.));
hmp->AddNode(ext, 2, new TGeoTranslation(-335 * mm, 0 * mm, (80. + 1.7) * mm + 58.3 * mm + 91 * mm / 2.));
hmp->AddNode(ext, 3, new TGeoTranslation(+335 * mm, 0 * mm, (80. + 1.7) * mm + 58.3 * mm + 91 * mm / 2.));
hmp->AddNode(ext, 0, new TGeoTranslation(-335 * mm, -433 * mm, (80. + 1.7) * mm + 58.3 * mm + 91 * mm / 2.));
hmp->AddNode(ext, 1, new TGeoTranslation(+335 * mm, -433 * mm, (80. + 1.7) * mm + 58.3 * mm + 91 * mm / 2.));
hmp->AddNode(proxgap1, 0, new TGeoTranslation(0., 0., (9. - 7.5) * mm / 2.)); // due to the TGeoVolumeAssembly
// definition the ch4 volume must be
// inserted around the collecting wires
hmp->AddNode(proxgap2, 0,
new TGeoTranslation(0., 0., (9 + 7.5 + 34) * mm +
(81.7 - 6.2 - 34. - 9. - 7.5) * mm /
2.)); // tot height(81.7) - Hsec - proxygap2 - top edge fr4 at(9+7.5) mm
// ^ Y single cell 5.5mm CH4 = 1*mm CsI + 4.45*mm CsI x cath +0.05*mm
// safety margin
// | ______________________________
// | | | ^ ||
// | | 1.05mm ||
// 2.2*mm| xxxxxxxxxxxxxxxxxxxxxxxxxxxx |-- 50um x || cat shift x=0mm , y= 3.15mm ,
// z=-2.70mm
// | | ||
// | | ||
// __ | .......................... | 2.1mm 20un . || ano shift x=0mm , y= 2.00mm ,
// z=-0.29mm
// | | ||
// | | ||
// | xxxxxxxxxxxxxxxxxxxxxxxxxxxx |-- x || cat shift x=0mm , y= 1.05mm ,
// z=-2.70mm
// | | ||
// | | 8.4mm ||
// 4*mm | | 2.1mm || pad shift x=0mm , y= 0.00mm ,
// z=2.25*mm
// | | ||
// | | ||
// | xxxxxxxxxxxxxxxxxxxxxxxxxxxx |-- x || cat shift x=0mm , y=-1.05mm ,
// z=-2.70mm
// | | ||
// | | ||
// __ | .......................... | 2.1mm . 2.04mm|| ano shift x=0mm , y=-2.00mm ,
// z=-0.29mm
// | | ||
// | | ||
// | xxxxxxxxxxxxxxxxxxxxxxxxxxxx |-- x 4.45mm || cat shift x=0mm , y=-3.15mm ,
// z=-2.70mm
// 2.2*mm| | ||
// | | 1.05mm ||
// |______________________________| v ||
// < 8 mm >
// ----->X ----->Z
ppf->AddNode(lar, 0, new TGeoTranslation(-224.5 * mm, -151.875 * mm, 0. * mm));
ppf->AddNode(lar, 1, new TGeoTranslation(-224.5 * mm, -50.625 * mm, 0. * mm));
ppf->AddNode(lar, 2, new TGeoTranslation(-224.5 * mm, +50.625 * mm, 0. * mm));
ppf->AddNode(lar, 3, new TGeoTranslation(-224.5 * mm, +151.875 * mm, 0. * mm));
ppf->AddNode(lar, 4, new TGeoTranslation(+224.5 * mm, -151.875 * mm, 0. * mm));
ppf->AddNode(lar, 5, new TGeoTranslation(+224.5 * mm, -50.625 * mm, 0. * mm));
ppf->AddNode(lar, 6, new TGeoTranslation(+224.5 * mm, +50.625 * mm, 0. * mm));
ppf->AddNode(lar, 7, new TGeoTranslation(+224.5 * mm, +151.875 * mm, 0. * mm));
ppf->AddNode(smo, 0, new TGeoTranslation(-65.0 * mm, -151.875 * mm, 0. * mm));
ppf->AddNode(smo, 1, new TGeoTranslation(-65.0 * mm, -50.625 * mm, 0. * mm));
ppf->AddNode(smo, 2, new TGeoTranslation(-65.0 * mm, +50.625 * mm, 0. * mm));
ppf->AddNode(smo, 3, new TGeoTranslation(-65.0 * mm, +151.875 * mm, 0. * mm));
ppf->AddNode(smo, 4, new TGeoTranslation(+65.0 * mm, -151.875 * mm, 0. * mm));
ppf->AddNode(smo, 5, new TGeoTranslation(+65.0 * mm, -50.625 * mm, 0. * mm));
ppf->AddNode(smo, 6, new TGeoTranslation(+65.0 * mm, +50.625 * mm, 0. * mm));
ppf->AddNode(smo, 7, new TGeoTranslation(+65.0 * mm, +151.875 * mm, 0. * mm));
// hmp->AddNode(fr3,1,new TGeoTranslation(0.,0.,(81.7-29.)*mm-34.*mm/2));
hmp->AddNode(fr3, 1, new TGeoTranslation(0., 0., (9. + 7.5) * mm + 34. * mm / 2));
fr3->AddNode(fr3up, 1, new TGeoTranslation(0., 0., 7 * mm));
fr3->AddNode(fr3down, 1, new TGeoTranslation(0., 0., -10 * mm));
return hmp;
}
//*************************************************************************************************************
TGeoVolume* Detector::CreateCradle()
{
// Method that builds the Cradle geometry
// according to the base topology created
// in CradleBaseVolume(...)
Double_t mm = 0.1;
Double_t params[10] = { 0.5, 10., 24., -1, 5.2, 1.5, 3.5, 8.5, 3.8, 0. };
TGeoMedium* med = gGeoManager->GetMedium("HMP_Al");
TGeoVolume* cradle = new TGeoVolumeAssembly("Hcradle");
// Double_t baselong[7]={6037*mm-2*60*mm, 6037*mm-2*60*mm,60*mm,0.,100*mm,10*mm,10*mm};//2CRE2112P3
Double_t baselong[7] = {
6037 * mm - 2 * 100 * mm, 6037 * mm - 2 * 100 * mm, 60 * mm, 0., 100 * mm, 10 * mm, 10 * mm
}; // 2CRE2112P3
TGeoVolume* lbase = CradleBaseVolume(med, baselong, "cradleLbase");
lbase->SetLineColor(kGray);
Double_t baseshort[7] = {
1288. * mm + 2 * 100 * mm, 1288. * mm + 2 * 100 * mm, 60 * mm, 0., 100 * mm, 10 * mm, 10 * mm
}; // 2CRE2112P3
TGeoVolume* sbase = CradleBaseVolume(med, baseshort, "cradleSbase");
sbase->SetLineColor(kGray);
// one side
Double_t height = 30. * mm; // 30 = 2*(1488/2-729) (2CRE2112P3)
Double_t tubeh = 50. * mm; // tube height
Double_t heightred = 5. * mm;
Double_t zred = 5. * mm;
Double_t oneshift = tubeh / TMath::Tan(TMath::DegToRad() * 20.) + (1458. - 35) * mm / 2 - (1607 - 35) * mm / 2;
Double_t linclined[7] = {
1458. * mm - params[6] - 0.5, 1607. * mm - params[6] - 0.5, tubeh, oneshift, height, heightred, zred
}; // 3.5 is for not correct measurements in 2CRE2112P3<=> 597!=inclined*sin(20)
TGeoVolume* inclin = CradleBaseVolume(med, linclined, "inclinedbar");
inclin->SetLineColor(kGray);
Double_t lhorizontal[7] = {
1641.36 * mm + params[7], 1659. * mm + params[7], tubeh, 0, height, heightred, zred
};
TGeoVolume* horiz = CradleBaseVolume(med, lhorizontal, "horizontalbar");
horiz->SetLineColor(kGray);
// inner bars, they are named as the numbering in 2CRE2112P3
Double_t fourshift = tubeh / TMath::Tan(TMath::DegToRad() * 55.);
Double_t lfour[7] = { 592 * mm, 592 * mm, tubeh, fourshift, height, heightred, zred };
TGeoVolume* four = CradleBaseVolume(med, lfour, "bar4");
four->SetLineColor(kGray);
Double_t fiveshift = tubeh / TMath::Tan(TMath::DegToRad() * 75);
Double_t lfive[7] = { 500. * mm, 500. * mm, tubeh, fiveshift, height, heightred, zred };
TGeoVolume* five = CradleBaseVolume(med, lfive, "bar5");
five->SetLineColor(kGray);
Double_t sixshift = tubeh / TMath::Tan(TMath::DegToRad() * 55) + 459 * mm / 2 - 480 * mm / 2;
Double_t lsix[7] = { 456 * mm, 477 * mm, tubeh, sixshift, height, heightred, zred };
TGeoVolume* six = CradleBaseVolume(med, lsix, "bar6");
six->SetLineColor(kGray);
Double_t sevenshift = tubeh / TMath::Tan(TMath::DegToRad() * 50) + 472 * mm / 2 - 429. * mm / 2;
Double_t lseven[7] = { 429 * mm, 472 * mm, tubeh, sevenshift, height, heightred, zred };
TGeoVolume* seven = CradleBaseVolume(med, lseven, "bar7");
seven->SetLineColor(kGray);
Double_t eightshift = tubeh / TMath::Tan(TMath::DegToRad() * 30) + 244. * mm / 2 - 200. * mm / 2 - 3;
Double_t leight[7] = { 200. * mm, 244. * mm, tubeh, eightshift, height, heightred, zred };
TGeoVolume* eight = CradleBaseVolume(med, leight, "bar8");
eight->SetLineColor(kGray);
Double_t nineshift = -tubeh / TMath::Tan(TMath::DegToRad() * 71) + 83. * mm / 2 - 66. * mm / 2;
Double_t lnine[7] = { 59.5 * mm, 76.5 * mm, tubeh, nineshift, height, heightred, zred };
TGeoVolume* nine = CradleBaseVolume(med, lnine, "bar9");
nine->SetLineColor(kGray);
Double_t tenshift = (-tubeh / TMath::Tan(TMath::DegToRad() * 60) - 221. * mm / 2 + 195. * mm / 2);
Double_t lten[7] = { 195. * mm, 221. * mm, tubeh, tenshift, height, heightred, zred };
TGeoVolume* ten = CradleBaseVolume(med, lten, "bar10");
ten->SetLineColor(kGray);
Double_t elevenshift = (-tubeh / TMath::Tan(TMath::DegToRad() * 70) - 338. * mm / 2 + 315. * mm / 2);
Double_t leleven[7] = { 308. * mm, 331. * mm, tubeh, elevenshift, height, heightred, zred };
TGeoVolume* eleven = CradleBaseVolume(med, leleven, "bar11");
eleven->SetLineColor(kGray);
Double_t twelveshift = (-tubeh / TMath::Tan(TMath::DegToRad() * 60) - 538. * mm / 2 + 508. * mm / 2);
Double_t ltwelve[7] = { 507. * mm, 537. * mm, tubeh, twelveshift, height, heightred, zred };
TGeoVolume* twelve = CradleBaseVolume(med, ltwelve, "bar12");
twelve->SetLineColor(kGray);
Double_t thirteenshift = tubeh / TMath::Tan(TMath::DegToRad() * 43);
Double_t lthirteen[7] = { 708. * mm, 708. * mm, tubeh, thirteenshift, height, heightred, zred };
TGeoVolume* thirteen = CradleBaseVolume(med, lthirteen, "bar13");
thirteen->SetLineColor(kGray);
// vertical rectangles
TGeoVolume* vbox = new TGeoVolumeAssembly("Hvbox");
vbox->SetLineColor(kViolet);
Double_t width = 50. * mm;
TGeoVolume* vboxlast = new TGeoVolumeAssembly("Hvboxlast"); // vertical structure on the short base
vboxlast->SetLineColor(kViolet);
Double_t barheight = 100. * mm;
Double_t lAfourteen[7] = { 1488. * mm, 1488. * mm, barheight, 0, width, heightred, zred };
TGeoVolume* afourteen = CradleBaseVolume(med, lAfourteen, "bar14top");
afourteen->SetLineColor(kGray);
Double_t lBfourteen[7] = { 387 * mm, 387. * mm, barheight, 0, width, heightred, zred };
TGeoVolume* bfourteen = CradleBaseVolume(med, lBfourteen, "bar14vert");
bfourteen->SetLineColor(kGray);
Double_t lCfourteen[7] = { 1288. * mm, 1288. * mm, barheight, 0, width, heightred, zred };
TGeoVolume* cfourteen = CradleBaseVolume(med, lCfourteen, "bar14bot");
cfourteen->SetLineColor(kGray);
Double_t oblshift = 50. * mm / TMath::Tan(TMath::DegToRad() * 35);
Double_t lDfourteen[7] = { 603. * mm, 603. * mm, 50. * mm, oblshift, width, heightred, zred };
TGeoVolume* dfourteen = CradleBaseVolume(med, lDfourteen, "bar14incl");
dfourteen->SetLineColor(kGray);
Double_t lDfourteenlast[7] = { 667. * mm, 667. * mm, 50. * mm, oblshift, width, heightred, zred };
TGeoVolume* dfourteenlast = CradleBaseVolume(med, lDfourteenlast, "bar14incllast");
dfourteenlast->SetLineColor(kGray);
vbox->AddNode(afourteen, 1, new TGeoTranslation(0., 487. * mm / 2 - 100. * mm / 2, 0.));
TGeoRotation* vinrot = new TGeoRotation("vertbar");
vinrot->RotateZ(90);
vbox->AddNode(bfourteen, 1, new TGeoCombiTrans(1488 * mm / 2 - 100. * mm / 2, -100. * mm / 2, 0., vinrot));
vbox->AddNode(bfourteen, 2, new TGeoCombiTrans(-1488 * mm / 2 + 100. * mm / 2, -100. * mm / 2, 0., vinrot));
TGeoRotation* rotboxbar = new TGeoRotation("rotboxbar");
rotboxbar->RotateZ(-35);
TGeoRotation* arotboxbar = new TGeoRotation("arotboxbar");
arotboxbar->RotateZ(-35);
arotboxbar->RotateY(180);
vbox->AddNode(dfourteen, 1, new TGeoCombiTrans(-1488 * mm / 4, -1, 0.4, rotboxbar));
vbox->AddNode(dfourteen, 2, new TGeoCombiTrans(+1488 * mm / 4, -1, 0.4, arotboxbar));
// vertical box on the short base of the cradle
vboxlast->AddNode(afourteen, 1, new TGeoTranslation(0., 487. * mm / 2 - 100. * mm / 2, 0.));
vboxlast->AddNode(bfourteen, 1, new TGeoCombiTrans(1488 * mm / 2 - 100. * mm / 2, -100. * mm / 2, 0., vinrot));
vboxlast->AddNode(bfourteen, 2, new TGeoCombiTrans(-1488 * mm / 2 + 100. * mm / 2, -100. * mm / 2, 0., vinrot));
vboxlast->AddNode(dfourteenlast, 1, new TGeoCombiTrans(-1488 * mm / 4 + 1.7, -3., 0., rotboxbar));
vboxlast->AddNode(dfourteenlast, 2, new TGeoCombiTrans(+1488 * mm / 4 - 1.7, -3., 0., arotboxbar));
// POSITIONING IN THE VIRTUAL VOLUME "cradle"
// long base
TGeoRotation* rotl = new TGeoRotation("Clongbase");
rotl->RotateX(90);
cradle->AddNode(lbase, 0, new TGeoCombiTrans(0 * mm, (1488 - 100) * mm / 2, -(597 - 60) * mm / 2, rotl));
cradle->AddNode(lbase, 1, new TGeoCombiTrans(0 * mm, -(1488 - 100) * mm / 2, -(597 - 60) * mm / 2, rotl));
// short base
TGeoRotation* rots = new TGeoRotation("Cshortbase");
rots->RotateX(90);
rots->RotateZ(90);
cradle->AddNode(sbase, 1, new TGeoCombiTrans((6037 - 100) * mm / 2, 0., -(597 - 60) * mm / 2, rots));
cradle->AddNode(sbase, 2, new TGeoCombiTrans(-(6037 - 100) * mm / 2, 0., -(597 - 60) * mm / 2, rots));
// trapezoidal structure
Double_t origtrastruct = (6037 - 2 * 60) * mm / 2 - 2288 * mm;
TGeoRotation* rot1 = new TGeoRotation("inclrot");
rot1->RotateX(90);
rot1->RotateY(200);
TGeoRotation* rot2 = new TGeoRotation("horizrot");
rot2->RotateX(-90);
Double_t dx = (1607 - 35) * mm * TMath::Cos(TMath::DegToRad() * 20) / 2 -
tubeh / 2 * TMath::Sin(TMath::DegToRad() * 20) + params[5];
cradle->AddNode(inclin, 1, new TGeoCombiTrans(origtrastruct + (2288 + 60) * mm - dx, 729 * mm, params[0] + 0.4,
rot1)); //+0.7 added
cradle->AddNode(horiz, 1, new TGeoCombiTrans(origtrastruct, 729 * mm, 597 * mm / 2 - tubeh / 2,
rot2)); // correctly positioned
TGeoRotation* rot1mirror = new TGeoRotation("inclmirrot");
rot1mirror->RotateX(90);
rot1mirror->RotateY(200);
rot1mirror->RotateZ(180);
cradle->AddNode(inclin, 2, new TGeoCombiTrans(origtrastruct - 2345 * mm + dx, 729 * mm, params[0] + 0.4,
rot1mirror)); //+0.7 added
cradle->AddNode(inclin, 3, new TGeoCombiTrans(origtrastruct + (2288 + 60) * mm - dx, -729 * mm, params[0] + 0.4,
rot1)); // 0.7 added
cradle->AddNode(horiz, 2, new TGeoCombiTrans(origtrastruct, -729 * mm, 597 * mm / 2 - tubeh / 2,
rot2)); // correctly positioned
cradle->AddNode(inclin, 4, new TGeoCombiTrans(origtrastruct - 2345 * mm + dx, -729 * mm, params[0] + 0.4,
rot1mirror)); // 0.7 added
Double_t tan1 = (2 * TMath::Tan(TMath::DegToRad() * 55));
// inner pieces on one side
TGeoRotation* rot4 = new TGeoRotation("4rot");
rot4->RotateX(-90);
rot4->RotateY(-55);
rot4->RotateZ(180);
TGeoRotation* rot4a = new TGeoRotation("4arot");
rot4a->RotateX(-90);
rot4a->RotateY(-55);
cradle->AddNode(four, 1, new TGeoCombiTrans(origtrastruct -
(39 + (597 - 50 - 60) / tan1) * mm -
tubeh / (2 * TMath::Sin(TMath::DegToRad() * 55)),
-729 * mm, params[3], rot4));
cradle->AddNode(four, 2, new TGeoCombiTrans(origtrastruct +
(39 + (597 - 50 - 60) / tan1) * mm +
tubeh / (2 * TMath::Sin(TMath::DegToRad() * 55)),
-729 * mm, params[3], rot4a));
TGeoRotation* rot5 = new TGeoRotation("5rot");
rot5->RotateX(-90);
rot5->RotateY(-75);
rot5->RotateZ(180);
TGeoRotation* rot5a = new TGeoRotation("5arot");
rot5a->RotateX(-90);
rot5a->RotateY(-75);
cradle->AddNode(
five, 1,