| [807] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 |
|
|---|
| 27 | expHall_x = 600.*cm;
|
|---|
| 28 | expHall_y = 600.*cm;
|
|---|
| 29 | expHall_z = 600.*cm;
|
|---|
| 30 |
|
|---|
| 31 | trkTubs_rmax = 50.*cm;
|
|---|
| 32 | trkTubs_rmin = 20.*cm;
|
|---|
| 33 | trkTubs_dz = 100.*cm;
|
|---|
| 34 | trkTubs_sphi = 0.*deg;
|
|---|
| 35 | trkTubs_dphi = 360.*deg;
|
|---|
| 36 |
|
|---|
| 37 | notrkLayers = 5;
|
|---|
| 38 | tracker_radius[0] = 25.*cm;
|
|---|
| 39 | tracker_radius[1] = 30.*cm;
|
|---|
| 40 | tracker_radius[2] = 35.*cm;
|
|---|
| 41 | tracker_radius[3] = 40.*cm;
|
|---|
| 42 | tracker_radius[4] = 45.*cm;
|
|---|
| 43 |
|
|---|
| 44 | tracker_thick = 0.5*cm;
|
|---|
| 45 | for(int il=0;il<5;il++)
|
|---|
| 46 | {
|
|---|
| 47 | tracker_length[il] = tracker_radius[il];
|
|---|
| 48 | }
|
|---|
| 49 |
|
|---|
| 50 | caloTubs_rmax = 300.*cm;
|
|---|
| 51 | caloTubs_rmin = 50.*cm;
|
|---|
| 52 | caloTubs_dz = 200.*cm;
|
|---|
| 53 | caloTubs_sphi = 0.*deg;
|
|---|
| 54 | caloTubs_dphi = 360.*deg;
|
|---|
| 55 |
|
|---|
| 56 | absorber_thick = 3.*cm;
|
|---|
| 57 | scinti_thick = 2.*cm;
|
|---|
| 58 | nocaloLayers = int((caloTubs_rmax-caloTubs_rmin)/(absorber_thick+scinti_thick));
|
|---|
| 59 |
|
|---|
| 60 | segmentsinPhi = 48;
|
|---|
| 61 | caloCell_rmax = caloTubs_rmax;
|
|---|
| 62 | caloCell_rmin = caloTubs_rmin;
|
|---|
| 63 | caloCell_dz = caloTubs_dz;
|
|---|
| 64 | caloCell_sphi = caloTubs_sphi;
|
|---|
| 65 | caloCell_dphi = caloTubs_dphi/segmentsinPhi;
|
|---|
| 66 |
|
|---|
| 67 | segmentsinZ = 20;
|
|---|
| 68 | caloRing_rmax = caloCell_rmax;
|
|---|
| 69 | caloRing_rmin = caloCell_rmin;
|
|---|
| 70 | caloRing_dz = caloCell_dz/segmentsinZ ;
|
|---|
| 71 | caloRing_sphi = caloCell_sphi;
|
|---|
| 72 | caloRing_dphi = caloCell_dphi;
|
|---|
| 73 |
|
|---|
| 74 | nomucounter = 4;
|
|---|
| 75 | muBox_radius = 350.*cm;
|
|---|
| 76 | muBox_width = muBox_radius - 5.*cm;
|
|---|
| 77 | muBox_thick = 1.*cm;
|
|---|
| 78 | muBox_length = expHall_z - 10.*cm;
|
|---|
| 79 |
|
|---|