Geant4  10.02.p01
RE01DetectorParameterDef.icc
Go to the documentation of this file.
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 /// \file runAndEvent/RE01/src/RE01DetectorParameterDef.icc
27 /// \brief Implementation of the RE01DetectorParameterDef.icc
28 //
29 // $Id: RE01DetectorParameterDef.icc 66379 2012-12-18 09:46:33Z gcosmo $
30 //
31 
32  fExpHall_x = 600.*cm;
33  fExpHall_y = 600.*cm;
34  fExpHall_z = 600.*cm;
35 
36  fTrkTubs_rmax = 50.*cm;
37  fTrkTubs_rmin = 20.*cm;
38  fTrkTubs_dz = 100.*cm;
39  fTrkTubs_sphi = 0.*deg;
40  fTrkTubs_dphi = 360.*deg;
41 
42  fNotrkLayers = 5;
43  fTracker_radius[0] = 25.*cm;
44  fTracker_radius[1] = 30.*cm;
45  fTracker_radius[2] = 35.*cm;
46  fTracker_radius[3] = 40.*cm;
47  fTracker_radius[4] = 45.*cm;
48 
49  fTracker_thick = 0.5*cm;
50  for(int il=0;il<5;il++)
51  {
52  fTracker_length[il] = fTracker_radius[il];
53  }
54 
55  fCaloTubs_rmax = 300.*cm;
56  fCaloTubs_rmin = 50.*cm;
57  fCaloTubs_dz = 200.*cm;
58  fCaloTubs_sphi = 0.*deg;
59  fCaloTubs_dphi = 360.*deg;
60 
61  fAbsorber_thick = 3.*cm;
62  fScinti_thick = 2.*cm;
63  fNocaloLayers = int((fCaloTubs_rmax-fCaloTubs_rmin)/(fAbsorber_thick+fScinti_thick));
64 
65  fSegmentsinPhi = 48;
66  fCaloCell_rmax = fCaloTubs_rmax;
67  fCaloCell_rmin = fCaloTubs_rmin;
68  fCaloCell_dz = fCaloTubs_dz;
69  fCaloCell_sphi = fCaloTubs_sphi;
70  fCaloCell_dphi = fCaloTubs_dphi/fSegmentsinPhi;
71 
72  fSegmentsinZ = 20;
73  fCaloRing_rmax = fCaloCell_rmax;
74  fCaloRing_rmin = fCaloCell_rmin;
75  fCaloRing_dz = fCaloCell_dz/fSegmentsinZ ;
76  fCaloRing_sphi = fCaloCell_sphi;
77  fCaloRing_dphi = fCaloCell_dphi;