]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MFT/SetMFTGeometry.C
Update master to aliroot
[u/mrichter/AliRoot.git] / MFT / SetMFTGeometry.C
CommitLineData
820b4d9e 1//==========================================================================================================================================
2
3// Macro to create the config file (AliMFTGeometry.root) for the geometry of the ALICE Muon Forward Tracker
4//
5// Contact author: antonio.uras@cern.ch
6
7//==========================================================================================================================================
8
9void SetMFTGeometry() {
10
1ad78f57 11 const Int_t nPlanes = 5;
820b4d9e 12
1ad78f57 13 const Float_t zCenter[nPlanes] = { -46.0, -49.3, -53.1, -68.7, -76.8 }; // expressed in cm
820b4d9e 14
1ad78f57 15 const Float_t rMin[nPlanes] = { 2.30, 2.30, 2.30, 3.30, 3.60 }; // expressed in cm
16 const Float_t rMax[nPlanes] = { 10.00, 10.50, 11.10, 13.90, 15.30 }; // expressed in cm
58b93f36 17
1ad78f57 18 const Float_t pixelSizeX[nPlanes] = { 28.e-4, 28.e-4, 28.e-4, 28.e-4, 28.e-4 }; // expressed in cm
19 const Float_t pixelSizeY[nPlanes] = { 28.e-4, 28.e-4, 28.e-4, 28.e-4, 28.e-4 }; // expressed in cm
820b4d9e 20
1ad78f57 21 const Float_t thicknessActive[nPlanes] = { 50.e-4, 50.e-4, 50.e-4, 50.e-4, 50.e-4 }; // expressed in cm
fb41bb49 22 const Float_t thicknessSupport[nPlanes] = { 1.4 , 1.4 , 1.4 , 1.4 , 1.4 }; // expressed in cm
1ad78f57 23 const Float_t thicknessReadout[nPlanes] = { 50.e-4, 50.e-4, 50.e-4, 50.e-4, 50.e-4 }; // expressed in cm
820b4d9e 24
1ad78f57 25 const Float_t equivalentSilicon[nPlanes] = { 600.e-4, 600.e-4, 600.e-4, 600.e-4, 600.e-4 }; // expressed in cm
26 const Float_t equivalentSiliconBeforeFront[nPlanes] = { 0.e-4, 0.e-4, 0.e-4, 0.e-4, 0.e-4 }; // expressed in cm
27 const Float_t equivalentSiliconBeforeBack[nPlanes] = { 550.e-4, 550.e-4, 550.e-4, 550.e-4, 550.e-4 }; // expressed in cm
820b4d9e 28
1ad78f57 29 const Float_t hasPixelRectangularPatternAlongY[nPlanes] = {0., 0., 0., 0., 0.};
58b93f36 30
bcaf50eb 31 TNtuple *geomMFT = new TNtuple("AliMFTGeometry", "ALICE MFT Geometry", "zCenter:rMin:rMax:pixelSizeX:pixelSizeY:thicknessActive:thicknessSupport:thicknessReadout:equivalentSilicon:equivalentSiliconBeforeFront:equivalentSiliconBeforeBack:hasPixelRectangularPatternAlongY");
820b4d9e 32
33 for (Int_t iPlane=0; iPlane<nPlanes; iPlane++) geomMFT -> Fill(zCenter[iPlane],
34 rMin[iPlane],
35 rMax[iPlane],
36 pixelSizeX[iPlane],
37 pixelSizeY[iPlane],
38 thicknessActive[iPlane],
39 thicknessSupport[iPlane],
40 thicknessReadout[iPlane],
41 equivalentSilicon[iPlane],
42 equivalentSiliconBeforeFront[iPlane],
bcaf50eb 43 equivalentSiliconBeforeBack[iPlane],
44 hasPixelRectangularPatternAlongY[iPlane]);
820b4d9e 45
46 TFile *fileGeomMFT = new TFile("AliMFTGeometry.root", "recreate");
47 geomMFT -> Write();
48 fileGeomMFT -> Close();
49
50}
51
52//==========================================================================================================================================