Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-23 09:22:42

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 /// \file runAndEvent/RE01/src/RE01DetectorParameterDef.icc
0027 /// \brief Implementation of the RE01DetectorParameterDef.icc
0028 //
0029 //
0030 
0031   fExpHall_x = 600.*cm;
0032   fExpHall_y = 600.*cm;
0033   fExpHall_z = 600.*cm;
0034 
0035   fTrkTubs_rmax =  50.*cm;
0036   fTrkTubs_rmin =  20.*cm;
0037   fTrkTubs_dz   = 100.*cm;
0038   fTrkTubs_sphi =   0.*deg;
0039   fTrkTubs_dphi = 360.*deg;
0040 
0041   fNotrkLayers = 5;
0042   fTracker_radius[0] = 25.*cm;
0043   fTracker_radius[1] = 30.*cm;
0044   fTracker_radius[2] = 35.*cm;
0045   fTracker_radius[3] = 40.*cm;
0046   fTracker_radius[4] = 45.*cm;
0047 
0048   fTracker_thick     =  0.5*cm;
0049   for(int il=0;il<5;il++)
0050   {
0051     fTracker_length[il] = fTracker_radius[il];
0052   }
0053 
0054   fCaloTubs_rmax = 300.*cm;
0055   fCaloTubs_rmin =  50.*cm;
0056   fCaloTubs_dz   = 200.*cm;
0057   fCaloTubs_sphi =   0.*deg;
0058   fCaloTubs_dphi = 360.*deg;
0059 
0060   fAbsorber_thick = 3.*cm;
0061   fScinti_thick = 2.*cm;
0062   fNocaloLayers = int((fCaloTubs_rmax-fCaloTubs_rmin)/(fAbsorber_thick+fScinti_thick));
0063 
0064   fSegmentsinPhi = 48;
0065   fCaloCell_rmax = fCaloTubs_rmax;
0066   fCaloCell_rmin = fCaloTubs_rmin;
0067   fCaloCell_dz   = fCaloTubs_dz;
0068   fCaloCell_sphi = fCaloTubs_sphi;
0069   fCaloCell_dphi = fCaloTubs_dphi/fSegmentsinPhi;
0070 
0071   fSegmentsinZ = 20;
0072   fCaloRing_rmax = fCaloCell_rmax;
0073   fCaloRing_rmin = fCaloCell_rmin;
0074   fCaloRing_dz   = fCaloCell_dz/fSegmentsinZ ;
0075   fCaloRing_sphi = fCaloCell_sphi;
0076   fCaloRing_dphi = fCaloCell_dphi;