source: trunk/source/interfaces/test/G4cout_test01/src/ExN01DetectorConstruction.cc @ 989

Last change on this file since 989 was 989, checked in by garnier, 15 years ago

fichiers manquants

File size: 5.8 KB
Line 
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// $Id: ExN01DetectorConstruction.cc,v 1.5 2006/06/29 19:10:44 gunter Exp $
28// GEANT4 tag $Name:  $
29//
30
31#include "ExN01DetectorConstruction.hh"
32
33#include "G4Material.hh"
34#include "G4Box.hh"
35#include "G4Tubs.hh"
36#include "G4LogicalVolume.hh"
37#include "G4ThreeVector.hh"
38#include "G4PVPlacement.hh"
39#include "globals.hh"
40
41ExN01DetectorConstruction::ExN01DetectorConstruction()
42 :  experimentalHall_log(0), tracker_log(0),
43    calorimeterBlock_log(0), calorimeterLayer_log(0),
44    experimentalHall_phys(0), calorimeterLayer_phys(0),
45    calorimeterBlock_phys(0), tracker_phys(0)
46{;}
47
48ExN01DetectorConstruction::~ExN01DetectorConstruction()
49{
50}
51
52G4VPhysicalVolume* ExN01DetectorConstruction::Construct()
53{
54
55  //------------------------------------------------------ materials
56
57  G4double a;  // atomic mass
58  G4double z;  // atomic number
59  G4double density;
60  G4String name;
61
62  a = 39.95*g/mole;
63  density = 1.782e-03*g/cm3;
64  G4Material* Ar = new G4Material(name="ArgonGas", z=18., a, density);
65
66  a = 26.98*g/mole;
67  density = 2.7*g/cm3;
68  G4Material* Al = new G4Material(name="Aluminum", z=13., a, density);
69
70  a = 207.19*g/mole;
71  density = 11.35*g/cm3;
72  G4Material* Pb = new G4Material(name="Lead", z=82., a, density);
73
74  //------------------------------------------------------ volumes
75
76  //------------------------------ experimental hall (world volume)
77  //------------------------------ beam line along x axis
78
79  G4double expHall_x = 3.0*m;
80  G4double expHall_y = 1.0*m;
81  G4double expHall_z = 1.0*m;
82  G4Box* experimentalHall_box
83    = new G4Box("expHall_box",expHall_x,expHall_y,expHall_z);
84  experimentalHall_log = new G4LogicalVolume(experimentalHall_box,
85                                             Ar,"expHall_log",0,0,0);
86  experimentalHall_phys = new G4PVPlacement(0,G4ThreeVector(),"expHall",
87                                            experimentalHall_log,0,false,0);
88
89  //------------------------------ a tracker tube
90
91  G4double innerRadiusOfTheTube = 0.*cm;
92  G4double outerRadiusOfTheTube = 60.*cm;
93  G4double hightOfTheTube = 50.*cm;
94  G4double startAngleOfTheTube = 0.*deg;
95  G4double spanningAngleOfTheTube = 360.*deg;
96  G4Tubs* tracker_tube = new G4Tubs("tracker_tube",innerRadiusOfTheTube,
97                                    outerRadiusOfTheTube,hightOfTheTube,
98                                    startAngleOfTheTube,spanningAngleOfTheTube);
99  tracker_log = new G4LogicalVolume(tracker_tube,Al,"tracker_log",0,0,0);
100  G4double trackerPos_x = -1.0*m;
101  G4double trackerPos_y = 0.*m;
102  G4double trackerPos_z = 0.*m;
103  tracker_phys = new G4PVPlacement(0,
104             G4ThreeVector(trackerPos_x,trackerPos_y,trackerPos_z),
105             tracker_log,"tracker",experimentalHall_log,false,0);
106
107  //------------------------------ a calorimeter block
108
109  G4double block_x = 1.0*m;
110  G4double block_y = 50.0*cm;
111  G4double block_z = 50.0*cm;
112  G4Box* calorimeterBlock_box = new G4Box("calBlock_box",block_x,
113                                          block_y,block_z);
114  calorimeterBlock_log = new G4LogicalVolume(calorimeterBlock_box,
115                                             Pb,"caloBlock_log",0,0,0);
116  G4double blockPos_x = 1.0*m;
117  G4double blockPos_y = 0.0*m;
118  G4double blockPos_z = 0.0*m;
119  calorimeterBlock_phys = new G4PVPlacement(0,
120             G4ThreeVector(blockPos_x,blockPos_y,blockPos_z),
121             calorimeterBlock_log,"caloBlock",experimentalHall_log,false,0);
122
123  //------------------------------ calorimeter layers
124
125  G4double calo_x = 1.*cm;
126  G4double calo_y = 40.*cm;
127  G4double calo_z = 40.*cm;
128  G4Box* calorimeterLayer_box = new G4Box("caloLayer_box",
129                                          calo_x,calo_y,calo_z);
130  calorimeterLayer_log = new G4LogicalVolume(calorimeterLayer_box,
131                                             Al,"caloLayer_log",0,0,0);
132  for(G4int i=0;i<19;i++) // loop for 19 layers
133  {
134    G4double caloPos_x = (i-9)*10.*cm;
135    G4double caloPos_y = 0.0*m;
136    G4double caloPos_z = 0.0*m;
137    calorimeterLayer_phys = new G4PVPlacement(0,
138               G4ThreeVector(caloPos_x,caloPos_y,caloPos_z),
139               calorimeterLayer_log,"caloLayer",calorimeterBlock_log,false,i);
140  }
141
142  //------------------------------------------------------------------
143
144  return experimentalHall_phys;
145}
146
Note: See TracBrowser for help on using the repository browser.