Geant4  10.00.p02
ExN04CalorimeterROGeometry.cc
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 //
28 //
29 // $Id: ExN04CalorimeterROGeometry.cc 77801 2013-11-28 13:33:20Z gcosmo $
30 //
31 
32 #include "G4Box.hh"
33 #include "G4LogicalVolume.hh"
34 #include "G4Material.hh"
35 #include "G4PVPlacement.hh"
36 #include "G4PVReplica.hh"
37 #include "G4SDManager.hh"
38 #include "G4SystemOfUnits.hh"
39 #include "G4ThreeVector.hh"
40 #include "G4Tubs.hh"
41 #include "G4VPhysicalVolume.hh"
42 #include "ExN04CalorimeterROGeometry.hh"
43 #include "ExN04DummySD.hh"
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48 {
50 }
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54  : G4VReadOutGeometry(aString)
55 {
57 }
58 
59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
61 {
62 }
63 
64 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
66 {
67  // A dummy material is used to fill the volumes of the readout geometry.
68  // ( It will be allowed to set a NULL pointer in volumes of such virtual
69  // division in future, since this material is irrelevant for tracking.)
71  new G4Material(name="dummyMat", 1., 1.*g/mole, 1.*g/cm3);
72 
73  //Builds the ReadOut World:
74  G4Box* ROWorldBox = new G4Box("ROWorldBox",
76  G4LogicalVolume* ROWorldLog = new G4LogicalVolume(ROWorldBox, dummyMat,
77  "ROWorldLogical", 0, 0, 0);
78  G4PVPlacement* ROWorldPhys = new G4PVPlacement(0, G4ThreeVector(),
79  "ROWorldPhysical",
80  ROWorldLog,
81  0, false, 0);
82  // Calorimeter volume:
83  G4VSolid* caloROtub
84  = new G4Tubs("caloROtub", fcaloTubs_rmin, fcaloTubs_rmax,
86  G4LogicalVolume* caloROlog
87  = new G4LogicalVolume(caloROtub, dummyMat, "caloROlogical",0,0,0);
88  G4VPhysicalVolume* caloROphys
89  = new G4PVPlacement(0, G4ThreeVector(), "calROphysical", caloROlog,
90  ROWorldPhys, false, 0);
91 
92  // -------------------------------
93  // Calorimeter readout division:
94  // -------------------------------
95  // Phi division first: 48 sectors
96  G4VSolid* caloROphiDivisionTub
97  = new G4Tubs("caloROphiDivision", fcaloCell_rmin, fcaloCell_rmax,
99  G4LogicalVolume* caloROphiDivisionLog
100  = new G4LogicalVolume(caloROphiDivisionTub,
101  dummyMat, "caloROphiDivisionLogical",0,0,0);
102  G4VPhysicalVolume* caloROphiDivisionPhys
103  = new G4PVReplica("caloROphiDivisionPhysical", caloROphiDivisionLog,
104  caloROphys, kPhi, fsegmentsinPhi, fcaloCell_dphi);
105  // then z division: 20 slices:
106  G4VSolid* caloROcellTub
107  = new G4Tubs("caloROcellTub", fcaloRing_rmin, fcaloRing_rmax,
109  G4LogicalVolume* caloROcellLog
110  = new G4LogicalVolume(caloROcellTub, dummyMat, "caloROcellLogical",0,0,0);
111  // G4VPhysicalVolume * caloROcellPhys =
112  new G4PVReplica("caloROcellPhysical", caloROcellLog, caloROphiDivisionPhys,
114 
115 
116  //Flags the cells as sensitive .The pointer here serves
117  // as a flag only to check for sensitivity.
118  // (Could we make it by a simple cast of a non-NULL value ?)
119  ExN04DummySD * dummySensi = new ExN04DummySD;
120  caloROcellLog->SetSensitiveDetector(dummySensi);
121 
122  return ROWorldPhys;
123 }
Definition: geomdefs.hh:54
CLHEP::Hep3Vector G4ThreeVector
Definition: G4Box.hh:64
Definition: G4Tubs.hh:85
static const double cm3
Definition: G4SIunits.hh:108
static const double g
Definition: G4SIunits.hh:162
static const double mole
Definition: G4SIunits.hh:265
void SetSensitiveDetector(G4VSensitiveDetector *pSDetector)