source: trunk/environments/g4py/tests/gtest01/g4lib/QDetectorConstruction.cc @ 1358

Last change on this file since 1358 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 5.4 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// $Id: QDetectorConstruction.cc,v 1.3 2006/06/29 15:37:14 gunter Exp $
27// $Name: geant4-09-04-beta-01 $
28// ====================================================================
29//   QDetectorConstruction.cc
30//
31//                                         2005 Q
32// ====================================================================
33#include "QDetectorConstruction.hh"
34
35#include "G4Material.hh"
36#include "G4Tubs.hh"
37#include "G4Box.hh"
38#include "G4LogicalVolume.hh"
39#include "G4PVPlacement.hh"
40#include "G4VisAttributes.hh"
41
42// ====================================================================
43//
44// class description
45//
46// ====================================================================
47
48// constants (detector parameters)
49static const G4double DXYZ_AREA= 30.*cm;
50static const G4double DW= 10.*cm;
51
52//////////////////////////////////////////////
53QDetectorConstruction::QDetectorConstruction()
54//////////////////////////////////////////////
55{
56}
57
58///////////////////////////////////////////////
59QDetectorConstruction::~QDetectorConstruction()
60///////////////////////////////////////////////
61{
62}
63
64/////////////////////////////////////////////////////
65G4VPhysicalVolume* QDetectorConstruction::Construct()
66/////////////////////////////////////////////////////
67{
68  G4Material* mate;
69  G4VisAttributes* va;
70
71  // ==============================================================
72  // world volume
73  // ==============================================================
74  G4Box* areaSolid= new G4Box("AREA", 
75                              DXYZ_AREA/2., DXYZ_AREA/2., DXYZ_AREA/2.);
76
77  G4Material* vacuum= G4Material::GetMaterial("Vacuum");
78  G4LogicalVolume* areaLV= new G4LogicalVolume(areaSolid, vacuum, "AREA_LV");
79  G4PVPlacement* area= new G4PVPlacement(0, G4ThreeVector(), "AREA_PV", 
80                                         areaLV, 0, false, 0);
81  // vis. attributes
82  va= new G4VisAttributes(G4Color(1.,1.,1.));
83  va-> SetForceWireframe(true);
84  areaLV-> SetVisAttributes(va);
85 
86  // ==============================================================
87  // detectors
88  // ==============================================================
89  // voxel
90  const G4double dvoxel= 10.*mm;
91  const G4double dl= 10.*cm;
92
93  G4Box* svoxel= new G4Box("voxel", dvoxel, dl, dvoxel);
94  mate= G4Material::GetMaterial("Vacuum");
95  G4LogicalVolume* lvoxel= new G4LogicalVolume(svoxel, mate, "voxel");
96  va= new G4VisAttributes(G4Color(0.,0.8,0.8));
97  va-> SetVisibility(false);
98  lvoxel-> SetVisAttributes(va);
99
100  G4int ix, iz;
101  G4int index=0;
102  for (iz=0; iz<5; iz++) {
103    for (ix=-7; ix<=7; ix++) {
104      G4double x0= (2.*ix)*cm;
105      G4double z0= (-13.+2.*iz)*cm;
106      G4PVPlacement* pvoxel= new 
107        G4PVPlacement(0, G4ThreeVector(x0, 0., z0),
108                      lvoxel, "voxel", areaLV, false, index);
109      index++;
110    }
111  }
112
113  // tube
114  //G4Tubs* stube= new G4Tubs("tube", 15./2.*mm, 19./2.*mm, dl,
115  G4Tubs* stube= new G4Tubs("tube", 0.*mm, 19./2.*mm, dl,
116                            0., 360.*deg);
117  mate= G4Material::GetMaterial("Al");
118  G4LogicalVolume* ltube= new G4LogicalVolume(stube, mate, "tube");
119  va= new G4VisAttributes(G4Color(0.,0.8,0.8));
120  ltube-> SetVisAttributes(va);
121
122  G4RotationMatrix* rmtube= new G4RotationMatrix;
123  rmtube-> rotateX(-90.*deg);
124  G4PVPlacement* ptube= new 
125    G4PVPlacement(rmtube, G4ThreeVector(),
126                  ltube, "tube", lvoxel, false, 0);
127 
128  // cal
129  const G4double dxycal= 25.*mm;
130  const G4double dzcal= 3.*cm;
131
132  G4Box* scal= new G4Box("cal", dxycal, dxycal, dzcal);
133  mate= G4Material::GetMaterial("CsI");
134  G4LogicalVolume* lcal= new G4LogicalVolume(scal, mate, "cal");
135  va= new G4VisAttributes(G4Color(0.5,0.5,0.));
136  lcal-> SetVisAttributes(va);
137
138  index= 0;
139  for (ix=-2; ix<=2; ix++) {
140    G4double x0= (5.*ix)*cm;
141    G4PVPlacement* pcal= new 
142      G4PVPlacement(0, G4ThreeVector(x0, 0., 2.*cm),
143                    lcal, "cal", areaLV, false, index);
144    index++;
145  }
146
147  return area;
148}
149
Note: See TracBrowser for help on using the repository browser.