78 lines
2.9 KiB
Plaintext
78 lines
2.9 KiB
Plaintext
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: RE01DetectorParameterDef.icc,v 1.2 2006/06/29 17:43:49 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-08-01 $
|
|
//
|
|
|
|
|
|
expHall_x = 600.*cm;
|
|
expHall_y = 600.*cm;
|
|
expHall_z = 600.*cm;
|
|
|
|
trkTubs_rmax = 50.*cm;
|
|
trkTubs_rmin = 20.*cm;
|
|
trkTubs_dz = 100.*cm;
|
|
trkTubs_sphi = 0.*deg;
|
|
trkTubs_dphi = 360.*deg;
|
|
|
|
notrkLayers = 5;
|
|
tracker_radius[0] = 25.*cm;
|
|
tracker_radius[1] = 30.*cm;
|
|
tracker_radius[2] = 35.*cm;
|
|
tracker_radius[3] = 40.*cm;
|
|
tracker_radius[4] = 45.*cm;
|
|
|
|
tracker_thick = 0.5*cm;
|
|
for(int il=0;il<5;il++)
|
|
{
|
|
tracker_length[il] = tracker_radius[il];
|
|
}
|
|
|
|
caloTubs_rmax = 300.*cm;
|
|
caloTubs_rmin = 50.*cm;
|
|
caloTubs_dz = 200.*cm;
|
|
caloTubs_sphi = 0.*deg;
|
|
caloTubs_dphi = 360.*deg;
|
|
|
|
absorber_thick = 3.*cm;
|
|
scinti_thick = 2.*cm;
|
|
nocaloLayers = int((caloTubs_rmax-caloTubs_rmin)/(absorber_thick+scinti_thick));
|
|
|
|
segmentsinPhi = 48;
|
|
caloCell_rmax = caloTubs_rmax;
|
|
caloCell_rmin = caloTubs_rmin;
|
|
caloCell_dz = caloTubs_dz;
|
|
caloCell_sphi = caloTubs_sphi;
|
|
caloCell_dphi = caloTubs_dphi/segmentsinPhi;
|
|
|
|
segmentsinZ = 20;
|
|
caloRing_rmax = caloCell_rmax;
|
|
caloRing_rmin = caloCell_rmin;
|
|
caloRing_dz = caloCell_dz/segmentsinZ ;
|
|
caloRing_sphi = caloCell_sphi;
|
|
caloRing_dphi = caloCell_dphi;
|
|
|